summaryrefslogtreecommitdiff
path: root/3888/CH19/EX19.1
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3888/CH19/EX19.1
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3888/CH19/EX19.1')
-rw-r--r--3888/CH19/EX19.1/Ex19_1.JPGbin0 -> 18847 bytes
-rw-r--r--3888/CH19/EX19.1/Ex19_1.sce28
2 files changed, 28 insertions, 0 deletions
diff --git a/3888/CH19/EX19.1/Ex19_1.JPG b/3888/CH19/EX19.1/Ex19_1.JPG
new file mode 100644
index 000000000..09a302893
--- /dev/null
+++ b/3888/CH19/EX19.1/Ex19_1.JPG
Binary files differ
diff --git a/3888/CH19/EX19.1/Ex19_1.sce b/3888/CH19/EX19.1/Ex19_1.sce
new file mode 100644
index 000000000..f4009ba05
--- /dev/null
+++ b/3888/CH19/EX19.1/Ex19_1.sce
@@ -0,0 +1,28 @@
+//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 19.1
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+V=132; //Operating Voltage in kV
+C=0.2; //Line to Ground Capacitance in microFarad
+f=50; //Supply Frequency in Hz
+L=1/(3*(2*%pi*f)^(2)*C*10^(-6)); //Inductance of Coil in H
+VA_coil=(132e3/1.732)^(2)/(2*%pi*f*L); //Rating of Coil in VA
+KVA_coil=VA_coil/1e3; //To convert VA value into kVA value
+
+printf("\nThe value of inductance of arc suppressor coil is %.2f H",L);
+printf("\nThe KVA rating of coil is %.3e kVA",KVA_coil);
+
+
+
+
+
+
+
+
+