summaryrefslogtreecommitdiff
path: root/14/CH4/EX4.3/example_4_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '14/CH4/EX4.3/example_4_3.sce')
-rwxr-xr-x14/CH4/EX4.3/example_4_3.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/14/CH4/EX4.3/example_4_3.sce b/14/CH4/EX4.3/example_4_3.sce
new file mode 100755
index 000000000..040127f73
--- /dev/null
+++ b/14/CH4/EX4.3/example_4_3.sce
@@ -0,0 +1,26 @@
+//Chapter 4
+//Example 4.3
+//chap3ex5
+//Page 85
+clear;clc;
+
+//Given Values
+d = 0.45;//in m
+k = 8.85e-12;//in F/m
+D_ab = 8;//in m
+D_bc = D_ab;
+D_ca = 16;//in m
+f = 60;//in Hz
+
+//From tables
+D = 1.382;//in inches
+
+//Calculations
+r = D * 0.3048 / (2 * 12)//divison by 12 to convert in to ft
+ //multiplication by 0.3048 to convert ft to m
+D_b_sC = sqrt( r * d);
+D_eq = (D_ab * D_bc * D_ca)^(1/3);
+C_m = 2 * %pi * k / log(D_eq / D_b_sC);
+X_c = 1e-3 / (2 * %pi * f *C_m);//1e-3 to convert m to km
+printf("\n\n Capacitance = %.3fe-12 F/m \n\n",C_m * 1e12)
+printf("\n\n Capacitive reactance = %.4fe6 ohm km per phase to neutral",X_c/1e6) \ No newline at end of file