blob: 25f12181bc41dcce34c51fb2b14766db8b708ddb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//Problem 44.02:A transmission line has an inductance of 4 mH/loop km and a capacitance of 0.004 μF/km. Determine, for a frequency of operation of 1 kHz, (a) the phase delay, (b) the wavelength on the line, and (c) the velocity of propagation (in metres per second) of the signal.
//initializing the variables:
L = 0.004; // in Henry/loop
C = 0.004E-6; // in F/loop
f = 1000; // in Hz
//calculation:
w = 2*%pi*f
//phase delay
b = w*(L*C)^0.5
//wavelength
Y = 2*%pi/b
//speed of transmission
u = f*Y
printf("\n\n Result \n\n")
printf("\n phase delay is %.3f rad/km",b)
printf("\n wavelength Y is %.1f km",Y)
printf("\n speed of transmission %.2E km/sec",u)
|