summaryrefslogtreecommitdiff
path: root/3281/CH10/EX10.10/ex10_10.sce
blob: 1e7e1ec9a2efce200f0d2a2cbb4dce3b9cba538d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//Page Number: 560
//Example 10.10
clc;
//Given
W=6; //m
s=2.2; //m
b=4.8; //m
Er=2.2;

//Even and odd mode impedance
Z0e=((120*%pi)*(b-s))/(2*sqrt(Er)*W);
disp('ohm',Z0e,'Even mode impedance:');


Z0o=(Z0e*s)/b;
disp('ohm',Z0o,'Odd mode impedance:');

//Mid band coupling
x=(Z0e-Z0o)/(Z0e+Z0o);
C=-20*log10(x);
disp('db',C,'Mid band coupling:');

//Answer in book for C is given as 54.2 but it should be 8.60