summaryrefslogtreecommitdiff
path: root/1820/CH9/EX9.16
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1820/CH9/EX9.16
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1820/CH9/EX9.16')
-rwxr-xr-x1820/CH9/EX9.16/Example9_16.sce58
1 files changed, 58 insertions, 0 deletions
diff --git a/1820/CH9/EX9.16/Example9_16.sce b/1820/CH9/EX9.16/Example9_16.sce
new file mode 100755
index 000000000..a30c5b2d6
--- /dev/null
+++ b/1820/CH9/EX9.16/Example9_16.sce
@@ -0,0 +1,58 @@
+// ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN
+// TURAN GONEN
+// CRC PRESS
+// SECOND EDITION
+
+// CHAPTER : 9 : SYMMETRICAL COMPONENTS AND FAULT ANALYSIS
+
+// EXAMPLE : 9.16 :
+clear ; clc ; close ; // Clear the work space and console
+
+// GIVEN DATA
+H_aa = 81.5 ;
+D_aa = 1.658 ;
+f = 60 ; // Freq in Hz
+I = 20 ;
+kV = 69 ; // Line voltage in kV
+MVA = 25 ; // Transformer T1 rating in MVA
+
+// CALCULATIONS
+// For case (a)
+C_0 = 29.842*10^-9/(log(H_aa/D_aa)) ; // Capacitance in F/mi
+b_0 = 2*%pi*f*C_0 ; // Susceptance in S/mi
+B_0 = b_0*I ; // For total system
+X_C0 = (1/B_0) ; // Total zero-sequence reactance in Ω
+TC_0 = B_0/(2*%pi*f) ; // Total zero-sequence capacitance in F
+
+// For case (c)
+X_1 = 0.05 ; // Leakage reactance of transformer T1 in pu
+X_0 = X_1 ;
+X_2 = X_1 ;
+Z_B = kV^2/MVA ;
+X_01 = X_0*Z_B ; // Leakage reactance in Ω
+V_F = 69*10^3/sqrt(3) ;
+I_a0PC = V_F/(17310.8915*%i) ; // Zero-sequence current flowing through PC in A
+I_PC = 3*abs(I_a0PC) ; // Continuous-current rating of the PC in A
+
+// For case (d)
+X_PC = (17310.8915 - X_01)/3 ; // Required reactance value for PC in Ω
+
+// For case (e)
+L_PC = X_PC/(2*%pi*f) ; // Inductance in H
+
+// For case (f)
+S_PC = (I_PC^2)*X_PC ; // Rating in VA
+S_PC1 = S_PC*10^-3 ; // Continuous kVA rating in kVA
+
+// For case (g)
+V_PC = I_PC * X_PC ; // continuous-voltage rating for PC in V
+
+// DISPLAY RESULTS
+disp("EXAMPLE : 9.16 :SOLUTION :-") ;
+printf("\n (a) Total zero-sequence susceptance per phase of system at 60 Hz , ΣX_C0 = %.4f Ω \n",X_C0) ;
+printf("\n Total zero-sequence capacitance per phase of system at 60 Hz , ΣC_0 = %.4e F \n",TC_0) ;
+printf("\n (c) Continuous-current rating of the PC , I_PC = 3I_a0PC = %.4f A \n",abs(I_PC)) ;
+printf("\n (d) Required reactance value for the PC , X_PC = %.4f Ω \n",X_PC) ;
+printf("\n (e) Inductance value of the PC , L_PC = %.4f H \n",L_PC) ;
+printf("\n (f) Continuous kVA rating for the PC , S_PC = %.2f kVA \n",S_PC1) ;
+printf("\n (g) Continuous-voltage rating for PC , V_PC = %.2f V \n",V_PC) ;