summaryrefslogtreecommitdiff
path: root/3487/CH7/EX7.2/Ex7_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3487/CH7/EX7.2/Ex7_2.sce')
-rw-r--r--3487/CH7/EX7.2/Ex7_2.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3487/CH7/EX7.2/Ex7_2.sce b/3487/CH7/EX7.2/Ex7_2.sce
new file mode 100644
index 000000000..d4a8262f5
--- /dev/null
+++ b/3487/CH7/EX7.2/Ex7_2.sce
@@ -0,0 +1,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
+