summaryrefslogtreecommitdiff
path: root/72/CH3/EX3.1.1/3_1_1.sce
blob: 3bc7a51b86f27f324f0f5306c2d3c3091cd056d4 (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
30
31
32
33
34
35
36
37
38
// CAPTION:Calculate_the_Line_Characteristic_Impedance_and_Propagation_constant
//chapter_no.-3,  page_no.-84
//Example_no.3-1-1

clc;


//(a)Calculate_the_line_Characteristic_Impedance


R=2;
L=8*(10^-9);
C=.23*(10^-12);
f=1*(10^9);
G=.5*(10^-3);
w=2*%pi*f;

Z0=sqrt((R+(%i*w*L))/(G+(%i*w*C)));
x=real(Z0);
y=imag(Z0);
o=atand(y,x);
disp(o,'the_phase_of_Z0_is =');
M=abs(Z0);//magintue_of_Z0
disp(M,'the_magnitude_of_Z0_is =');
disp(Z0,'the_line_characteristic_impedance is =');



//(b)Calculate_the_propagation_constant

r=sqrt((R+(%i*w*L))*(G+(%i*w*C)));
x=real(r);
y=imag(r);
o=atand(y,x);
disp(o,'the_phase_of_r_is =');
M=abs(r);//magintue_of_r
disp(M,'the_magnitude_of_r_is =');
disp(r,'the_propagation_constant is =');