summaryrefslogtreecommitdiff
path: root/3472/CH27/EX27.11/Example27_11.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3472/CH27/EX27.11/Example27_11.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3472/CH27/EX27.11/Example27_11.sce')
-rw-r--r--3472/CH27/EX27.11/Example27_11.sce33
1 files changed, 33 insertions, 0 deletions
diff --git a/3472/CH27/EX27.11/Example27_11.sce b/3472/CH27/EX27.11/Example27_11.sce
new file mode 100644
index 000000000..e74e57098
--- /dev/null
+++ b/3472/CH27/EX27.11/Example27_11.sce
@@ -0,0 +1,33 @@
+// A Texbook on POWER SYSTEM ENGINEERING
+// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
+// DHANPAT RAI & Co.
+// SECOND EDITION
+
+// PART III : SWITCHGEAR AND PROTECTION
+// CHAPTER 1: SYMMETRICAL SHORT CIRCUIT CAPACITY CALCULATIONS
+
+// EXAMPLE : 1.11 :
+// Page number 472-473
+clear ; clc ; close ; // Clear the work space and console
+
+// Given data
+X_d_st_G = 0.15 // Sub-transient reactance of generator(p.u)
+X_d_st_M = 0.45 // Sub-transient reactance of motor(p.u)
+X = 0.10 // Leakage reactance of transformer(p.u)
+V = 0.9 // Terminal voltage of the generator(p.u)
+I_G = 1.0 // Output current of the generator(p.u)
+PF = 0.8 // Power factor of the load
+
+// Calculations
+sin_phi = (1-PF**2)**0.5
+I = I_G*(PF+%i*sin_phi) // Load current(p.u)
+E_st_G = V+%i*I*X_d_st_G // Sub-transient voltage of the generator(p.u)
+E_st_M = V-%i*I*X_d_st_M // Sub-transient voltage of the motor(p.u)
+I_st_g = E_st_G/(%i*(X_d_st_G+X)) // Sub-transient current in the generator at fault(p.u)
+I_st_m = E_st_M/(%i*(X_d_st_M-X)) // Sub-transient current in the motor at fault(p.u)
+
+// Results
+disp("PART III - EXAMPLE : 1.11 : SOLUTION :-")
+printf("\nCase(a): Sub-transient current in the fault in generator = %.3f∠%.3f° p.u", abs(I_st_g),phasemag(I_st_g))
+printf("\nCase(b): Sub-transient current in the fault in motor = %.3f∠%.2f° p.u \n", abs(I_st_m),180+phasemag(I_st_m))
+printf("\nNOTE: ERROR: Sub-transient reactance of motor is 0.45 p.u & not 0.35 p.u as mentioned in textbook statement")