blob: 84025084517bbf160a2bdc3c401197ea4c156d6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
//chapter_no.-11, page_no.-508
//Example_no.11-4-1
clc;
//(a)Calculate_the_K_factor
er=2.56//relative_dielectric_constant
w=25;//strip_width
t=14;//strip_thickness
d=70;//shield_depth
K=1/(1-(t/d));
disp(K,'the_K_factor is =');
//(b)Calculate_the_fringe_capacitance
Cf=((8.854*er)*((2*K*log(K+1))-((K-1)*log((K^2)-1))))/%pi;
disp(Cf,'the_fringe_capacitance(in pF/m)is =');
//(c) Calculate_the_characteristic_impedance_of_the_line
Z0=94.15/((((w/d)*K)+(Cf/(8.854*er)))*(sqrt(er)));
disp(Z0,'the_characteristic_impedance_of_the_line(in ohms)is =');
|