blob: d4a8262f5d2f18ab8c5989310902d879877c0703 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Chapter 7,Example 7.2 Page 222
clc
clear
Lc = 0.3*10^-3 // H
Cc= 0.4*10^-6 // F
Ll = 1.5*10^-3 // H
Cl = 0.012*10^-6 //F
V = 15 // kV
Ic = sqrt(Lc/Cc) // The natural impedence of the cable
Il = sqrt(Ll/Cl) // The natural impedence of the line
E = 2*Il*V/(Ic+Il)
printf ("The natural impedence of the cable = %f ohms \n",Ic) // unit failed to be mentioned
printf (" The natural impedence of the line = %f ohms \n",Il)
printf (" E′′ = %f kV \n",E)
// Answers may vary due to round of error
|