40m
QIL
Cryo_Lab
CTN
SUS_Lab
TCS_Lab
OMC_Lab
CRIME_Lab
FEA
ENG_Labs
OptContFac
Mariner
WBEEShop
|
40m Log |
Not logged in |
 |
|
Thu Jul 21 05:22:26 2016, Aakash, Update, General, Temperature measurements across the enclosure | SURF 2016   
|
Thu Jul 21 21:38:44 2016, Aakash, Update, General, Temperature measurements across the enclosure | SURF 2016
|
Fri Jul 22 05:20:26 2016, Aakash, Update, General, Temperature measurements across the enclosure | SURF 2016   
|
|
Message ID: 12317
Entry time: Thu Jul 21 05:22:26 2016
Reply to this: 12323
|
Author: |
Aakash |
Type: |
Update |
Category: |
General |
Subject: |
Temperature measurements across the enclosure | SURF 2016 |
|
|
I have measured the transfer function of temperature fluctuations inside the enclosure to that of the temperature fluctuations outside. The transfer function has been estimated by using 'tfestimate' which is library function in Matlab and which estimates the transfer function based on Welch's method. The attached plots shows the transfer function of the temperature inside the enclosure to that of outside temperature.
fig1.pdf
fig2.pdf
In order to determine a relation between temperature inside the enclosure to that of the outside temperature, I have calculated the mean squared coherence. I have used Matlab's 'mscohere' library function which uses Welch's method to calculate the coherence. Attached plot shows the coherence between the temperature across the enclosure.
fig3.pdf
Also, I have attached the matlab script which I used for generating these plots.
script21jul2016.m |
|
filename='2315on5july.dat';
data=importdata(filename);
%temperature data outside the enclosure on channel 2
data1=data(:,2);
%temperature data inside the enclosure on channel 3
data2=data(:,3);
%sampling frequency in Hz
fs=100;
... 30 more lines ...
|
|
|
|
|
|
|