summaryrefslogtreecommitdiff
path: root/3472/CH23
diff options
context:
space:
mode:
Diffstat (limited to '3472/CH23')
-rw-r--r--3472/CH23/EX23.1/Example23_1.sce30
1 files changed, 30 insertions, 0 deletions
diff --git a/3472/CH23/EX23.1/Example23_1.sce b/3472/CH23/EX23.1/Example23_1.sce
new file mode 100644
index 000000000..8b09c2055
--- /dev/null
+++ b/3472/CH23/EX23.1/Example23_1.sce
@@ -0,0 +1,30 @@
+// A Texbook on POWER SYSTEM ENGINEERING
+// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
+// DHANPAT RAI & Co.
+// SECOND EDITION
+
+// PART II : TRANSMISSION AND DISTRIBUTION
+// CHAPTER 16: POWER SYSTEM GROUNDING
+
+// EXAMPLE : 16.1 :
+// Page number 409
+clear ; clc ; close ; // Clear the work space and console
+
+// Given data
+V = 132.0*10**3 // Voltage(V)
+n = 3.0 // Number of phase
+f = 50.0 // Frequency(Hz)
+l = 50.0 // Line length(km)
+C = 0.0157*10**-6 // Capacitance to earth(F/km)
+
+// Calculations
+L = 1/(n*(2*%pi*f)**2*C*l) // Inductance(H)
+X_L = 2*%pi*f*L // Reactance(ohm)
+I_F = V/(3**0.5*X_L) // Current(A)
+rating = I_F*V/(3**0.5*1000) // Rating of arc suppression coil(kVA)
+
+// Results
+disp("PART II - EXAMPLE : 16.1 : SOLUTION :-")
+printf("\nInductance, L = %.1f Henry", L)
+printf("\nRating of arc suppression coil = %.f kVA \n", rating)
+printf("\nNOTE: Changes in the obtained answer from that of textbook is due to more approximation in the textbook")