diff options
Diffstat (limited to '3472/CH14/EX14.15/Example14_15.sce')
-rw-r--r-- | 3472/CH14/EX14.15/Example14_15.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/3472/CH14/EX14.15/Example14_15.sce b/3472/CH14/EX14.15/Example14_15.sce new file mode 100644 index 000000000..487b6a5a4 --- /dev/null +++ b/3472/CH14/EX14.15/Example14_15.sce @@ -0,0 +1,25 @@ +// 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 7: UNDERGROUND CABLES
+
+// EXAMPLE : 7.15 :
+// Page number 220-221
+clear ; clc ; close ; // Clear the work space and console
+
+// Given data
+V = 13.2*10**3 // Line Voltage(V)
+f = 50.0 // Frequency(Hz)
+C_BC = 4.2 // Capacitance b/w two cores(µF)
+
+// Calculations
+C_n = 2.0*C_BC // Capacitance to neutral(µF)
+V_ph = V/3**0.5 // Operating phase voltage(V)
+I_c = 2.0*%pi*f*C_n*V/3**0.5*10**-6 // Charging current(A)
+
+// Results
+disp("PART II - EXAMPLE : 7.15 : SOLUTION :-")
+printf("\nCharging current drawn by cable, I_c = %.2f A", I_c)
|