summaryrefslogtreecommitdiff
path: root/1574/CH8/EX8.1/TL_Ex_8_1.sce
blob: 44cffaa54ebcd6b1fc6e1284c39c12309f92ee87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
clc
//Chapter8
//Example8.1, page no 313
//Given
//a
L=1.2*10^-3//distributed inductance
C=0.05*10^-6//distributed capacitance
Zo=sqrt(L/C)//Characteristic Impedance
mprintf('The characteristic Impedance is Zo= %f ohm',Zo)
Wo=1// Assumedfor ease of calculation 
G=%i*sqrt(L*C)*Wo
mprintf('\nPropagation constant is Gama= j%3.2ew',G*-%i)
//b
//i
lambda=0.4e3//wavelength=Line length
c=3e8
f=c/lambda
//ii
L=L'*0.4
C=C'*0.4
v=1/(sqrt(L*C))
mprintf('\n The freq at which the line length is equal to wavelength is: %d KHz\n The velocity of propagation is: %f km/sec',f*1e-3,v*1e-3)