diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1820/CH7/EX7.1/Example7_1.sce | |
download | Scilab-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/CH7/EX7.1/Example7_1.sce')
-rwxr-xr-x | 1820/CH7/EX7.1/Example7_1.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/1820/CH7/EX7.1/Example7_1.sce b/1820/CH7/EX7.1/Example7_1.sce new file mode 100755 index 000000000..18680cf68 --- /dev/null +++ b/1820/CH7/EX7.1/Example7_1.sce @@ -0,0 +1,26 @@ +// ELECTRIC POWER TRANSMISSION SYSTEM ENGINEERING ANALYSIS AND DESIGN
+// TURAN GONEN
+// CRC PRESS
+// SECOND EDITION
+
+// CHAPTER : 7 : TRANSIENT OVERVOLTAGES AND INSULATION COORDINATION
+
+// EXAMPLE : 7.1 :
+clear ; clc ; close ; // Clear the work space and console
+
+// GIVEN DATA
+V = 1000 ; // surge voltage in kV
+Z_c = 500 ; // surge impedance in Ω
+
+// CALCULATIONS
+// For case (a)
+P = V^2/Z_c ; // Total surge power in MW
+
+// For case (b)
+V1 = V*10^3 ; // surge voltage in V
+i = V1/Z_c ;// surge current in A
+
+// DISPLAY RESULTS
+disp("EXAMPLE : 7.1 : SOLUTION :-") ;
+printf("\n (a) Total surge power in line , P = %d MW \n",P) ;
+printf("\n (b) Surge current in line , i = %d A \n",i) ;
|