summaryrefslogtreecommitdiff
path: root/3888/CH11/EX11.6
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3888/CH11/EX11.6
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/CH11/EX11.6')
-rw-r--r--3888/CH11/EX11.6/Ex11_6.JPGbin0 -> 22479 bytes
-rw-r--r--3888/CH11/EX11.6/Ex11_6.sce27
2 files changed, 27 insertions, 0 deletions
diff --git a/3888/CH11/EX11.6/Ex11_6.JPG b/3888/CH11/EX11.6/Ex11_6.JPG
new file mode 100644
index 000000000..9be148ccb
--- /dev/null
+++ b/3888/CH11/EX11.6/Ex11_6.JPG
Binary files differ
diff --git a/3888/CH11/EX11.6/Ex11_6.sce b/3888/CH11/EX11.6/Ex11_6.sce
new file mode 100644
index 000000000..ba2e3d6e3
--- /dev/null
+++ b/3888/CH11/EX11.6/Ex11_6.sce
@@ -0,0 +1,27 @@
+//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 11.6
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+Vs=420; //Supply voltage in kV
+f=60; //Supply frequency in Hz
+l=463; //Length of the line in km
+Vr=700; //Receiving end voltage in kV
+sen_end_crt=646.6; //Sending end current in A
+pha_con_len=acos(Vs/Vr); //Phase constant length in rad
+pha_const=pha_con_len/l; //Phase constant in rad/km
+Z=Vr*10^(3)*sin(pha_con_len)/(3^(1/2)*sen_end_crt); //Surge impedance in Ohm
+X=(sin(pha_con_len)/(1-cos(pha_con_len)))*Z; //Reactance of the line in Ohm
+shu_rat=Vs^(2)/X; //Shunt reactor rating in MVAr
+
+
+printf("\nThe phase constant and Surge impedance of the line is %.3f rad/km and %.f Ohm",pha_const,Z);
+printf("\nThe reactance per phase and the required shunt reactor rating of the line is %.f Ohm and %.1f MVAr",X,shu_rat);
+
+
+