blob: ae8a5ecd3abeab0d6e229935ccf2b57cc4034422 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//Page Number: 556
//Example 10.4
clc;
//Given,
q=2.5;
dh=1.58;
er=9;
f=10;
c=3D+8;
erff=((er+1)/2)+(((er-1)/2)*((1+(12/q))^(-1/2)));
vp=(c/sqrt(erff))*erff;
fe1=c/(sqrt(vp)*2*dh*q);
if f<fe1 then
disp('Strip supports TEM mode only');
else
disp('Strip does not support TEM mode only');
end
|