source: ETALON/THZ_filters/Experiment results/AllMeasurements.m @ 733

Last change on this file since 733 was 733, checked in by hodnevuc, 7 years ago
File size: 1.5 KB
Line 
1%All measurements
2close all; clear all
3Freq=[20 23 24 25 26 27 30 40 50];
4Vpp0=[101.6 104.00 108 113.6 122.4 114.4 104.6 87.2 88.]/145.6;
5Vpp1=[116.8 124.0 120.0 126.4 133.6 124.8 115.2 100 97.6]./[153.6 150.4 148.8 147.2 145.2 145.6 144.8 144.8 143.2];
6Vpp0a=[113.6 122.4 118.4 124.0 129.6 124 115.2 98.4 96.0]./[148.8 147.2 145.6 144.0 144.0 143.2 142.4 141.6 142.4];
7Vpp1a=[114.4 124.8 116.8 126.4 132.8 124.8 112.4 96.0 92.8]./[148.0 145.6 144.8 144.8 144.0 144.0 143.2 143.2 143.2];
8Vpp=[Vpp1; Vpp0a; Vpp1a];
9Vppx=([198 230 226 218 242 254 256 208 224]-16)./([248 248 244 246 244 244 242 244 244]-16);
10
11figure
12hold on
13plot(Freq,Vppx,'-*r','linew',2)
14plot(Freq,Vpp0,'-*k','linew',2)
15
16errorbar(Freq,mean(Vpp),std(Vpp),'-ob','linew',2)
17set(gca,'fontsize',16)
18grid on
19xlabel('Frequency, [GHz]')
20ylabel('Transmissivity, [1]')
21title('GDO-2510, 24 [GHz]')
22 legend('Data set 1','Data set 2','Data set 3','location','southeast')
23ylim([0 1.2])
24
25
26
27
28% Vpp2=[106.4 104.8 109.6 105.6 104.8 110.4 105.8 114.4 117.6];
29Vpp3=[112.8 108.8 111.2 107.2 108.0 112.8 107.2 117.6 118.4]./[122.4 121.6 120.8 120.0 120.0 120.0 120.0 119.2 119.2];
30Vpp4=[53.8 52.8 55.2 48.0 51.2 55.2 45.6 58.4 60.8]./[68 66.4 65.6 65.6 65.6 65.6 65.6 65.6 65.6];
31figure
32hold on
33% plot(Freq,Vpp2)
34grid on
35plot(Freq,Vpp3,'-or','linew',2)
36plot(Freq,Vpp4,'-ok','linew',2)
37set(gca,'fontsize',16)
38xlabel('Frequency, [GHz]')
39ylabel('Transmissivity, [1]')
40title('SOL-35310, 35 [GHz]')
41legend('With GHA','Without GHA','location','southeast')
42ylim([0.5 1])
Note: See TracBrowser for help on using the repository browser.