summaryrefslogtreecommitdiff
path: root/3888/CH17/EX17.2/Ex17_2.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3888/CH17/EX17.2/Ex17_2.sce
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/CH17/EX17.2/Ex17_2.sce')
-rw-r--r--3888/CH17/EX17.2/Ex17_2.sce31
1 files changed, 31 insertions, 0 deletions
diff --git a/3888/CH17/EX17.2/Ex17_2.sce b/3888/CH17/EX17.2/Ex17_2.sce
new file mode 100644
index 000000000..cad027f75
--- /dev/null
+++ b/3888/CH17/EX17.2/Ex17_2.sce
@@ -0,0 +1,31 @@
+//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 17.2
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+V=110; //Supply voltage in kV
+P1=30; //Load for 5 hours in MW
+P2=15; //Load for 10 hours in MW
+P3=8; //Load for 9 hours in MW
+pf1=0.8; //Lagging power factor of 30 MW load
+pf2=0.9; //Lagging power factor of 15 MW load
+pf3=1; //Unity power factor of 8 MW load
+I1=P1*10^(6)/(sqrt(3)*V*10^(3)*pf1); //Current of 30 MW load in Amps
+I2=P2*10^(6)/(sqrt(3)*V*10^(3)*pf2); //Current of 15 MW load in Amps
+I3=P3*10^(6)/(sqrt(3)*V*10^(3)*pf3); //Current of 8 MW load in Amps
+
+//The remaining of the problem cannot be solved using SCILAB
+
+
+
+
+
+
+
+
+