summaryrefslogtreecommitdiff
path: root/3035/CH6/EX6.1
diff options
context:
space:
mode:
Diffstat (limited to '3035/CH6/EX6.1')
-rwxr-xr-x3035/CH6/EX6.1/Ex6_1.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/3035/CH6/EX6.1/Ex6_1.sce b/3035/CH6/EX6.1/Ex6_1.sce
new file mode 100755
index 000000000..a3c748f3c
--- /dev/null
+++ b/3035/CH6/EX6.1/Ex6_1.sce
@@ -0,0 +1,14 @@
+// Variable Declaration
+C_m = 0.28 //Capacitance b/w ant 2 cores(micro-F/km)
+f = 50.0 //Frequency(Hz)
+V_L = 11.0 //Line voltage(kV)
+
+// Calculation Section
+C = 2*C_m //Capacitance b/w any conductor & shield(micro-F/km)
+w = 2*%pi*f //Angular frequency
+I_c = V_L*10**3*w*C*10**-6/3**0.5 //Charging current/phase/km(A)
+Total = 3**0.5*I_c*V_L //Total charging kVAR/km
+
+// Result Section
+printf('Charging current/phase/km , I_c = %.3f A' ,I_c)
+printf('Total charging kVAR/km = %.2f ' ,Total)