summaryrefslogtreecommitdiff
path: root/3888/CH3/EX3.5
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3888/CH3/EX3.5
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip
Added new codeHEADmaster
Diffstat (limited to '3888/CH3/EX3.5')
-rw-r--r--3888/CH3/EX3.5/Ex3_5.JPGbin0 -> 19824 bytes
-rw-r--r--3888/CH3/EX3.5/Ex3_5.sce22
2 files changed, 22 insertions, 0 deletions
diff --git a/3888/CH3/EX3.5/Ex3_5.JPG b/3888/CH3/EX3.5/Ex3_5.JPG
new file mode 100644
index 000000000..cf44c52a3
--- /dev/null
+++ b/3888/CH3/EX3.5/Ex3_5.JPG
Binary files differ
diff --git a/3888/CH3/EX3.5/Ex3_5.sce b/3888/CH3/EX3.5/Ex3_5.sce
new file mode 100644
index 000000000..26acc005b
--- /dev/null
+++ b/3888/CH3/EX3.5/Ex3_5.sce
@@ -0,0 +1,22 @@
+//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 3.5
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+kVpry=220; //Primary voltage of Transformer in kV
+kVsec=400; //Secondary voltage of Transformer in kV
+MVAb=240; //Apparent Base power in Transformer in MVA
+Zpry=3+%i*8; //Primary Impedance of Transformer in Ohm
+Zsec=5+%i*10; //Secondary Impedance of Transformer in Ohm
+Zlv=(Zpry)+(Zsec)*(kVpry/kVsec)^2; //Impedance referred to LV side in Ohm
+Zlvpu=(Zlv)*(MVAb/(kVpry)^2); //Per unit impedance referred to LV side in p.u. Ohm
+Zhv=(Zsec)+(Zpry)*(kVsec/kVpry)^2; //Impedance referred to HV side in Ohm
+Zhvpu=(Zhv)*(MVAb/(kVsec)^2); //Per unit impedance referred to HV side in p.u. Ohm
+
+
+printf("\nPer unit impedance referred to the L.V side is %.6f + j%.6f",real (Zlvpu),imag (Zlvpu));
+printf("\nPer unit impedance referred to the H.V side is %.6f + j%.6f",real (Zhvpu),imag (Zhvpu));