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

Last change on this file since 733 was 733, checked in by hodnevuc, 7 years ago
File size: 1.4 KB
Line 
1%Thz Filter
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];
9
10figure
11hold on
12% plot(Freq,Vpp0,'-ok')
13% plot(Freq,Vpp1,'-or','linew',2)
14% plot(Freq,Vpp0a,'-ok','linew',2)
15% plot(Freq,Vpp1a,'-ob','linew',2)
16errorbar(Freq,mean(Vpp),std(Vpp),'-or','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')
23ylim([0.5 1])
24
25% Vpp2=[106.4 104.8 109.6 105.6 104.8 110.4 105.8 114.4 117.6];
26Vpp3=[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];
27Vpp4=[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];
28figure
29hold on
30% plot(Freq,Vpp2)
31grid on
32plot(Freq,Vpp3,'-or','linew',2)
33plot(Freq,Vpp4,'-ok','linew',2)
34set(gca,'fontsize',16)
35xlabel('Frequency, [GHz]')
36ylabel('Transmissivity, [1]')
37title('SOL-35310, 35 [GHz]')
38legend('With GHA','Without GHA','location','southeast')
39ylim([0.5 1])
Note: See TracBrowser for help on using the repository browser.