diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3888/CH4/EX4.4/Ex4_4.sce | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3888/CH4/EX4.4/Ex4_4.sce')
-rw-r--r-- | 3888/CH4/EX4.4/Ex4_4.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/3888/CH4/EX4.4/Ex4_4.sce b/3888/CH4/EX4.4/Ex4_4.sce new file mode 100644 index 000000000..2904b4516 --- /dev/null +++ b/3888/CH4/EX4.4/Ex4_4.sce @@ -0,0 +1,32 @@ +//Electric Power Generation, Transmission and Distribution by S.N.Singh
+//Publisher:PHI Learning Private Limited
+//Year: 2012 ; Edition - 2
+//Example 4.4
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+
+P=20; //Load in kW
+pf1=0.8; //Actual Power factor
+pf2=0.95; //Required Power factor
+phi1=acos(pf1); //Actual Power factor angle in degree
+phi2=acos(pf2); //Required Power factor angle in degree
+S1=P/pf1; //Actual Apparent Power in kVA
+S2=P/pf2; //Modified Apparent Power in kVA
+C_VAR=S1*sin(phi1)-S2*sin(phi2); //Required rating of the Capacitor in kVAR
+phi3=acos(0.1); //Power factor Angle of Phase Advancing device in degree
+alpha=phi1-phi2; //Angle in degree
+Beta=%pi/2-acos(0.1)+%pi-(phi1+%pi/2); //Angle in degree
+del=%pi-(Beta+alpha); //Angle in degree
+ph_adv_KVA=S1*sin(alpha)/sin(del); //Apparent Power of the Phase advancing device in kVA
+
+printf("\nThe rating of capacitor to raise the power factor to 0.95 lagging is %.2f kVAR",C_VAR);
+printf("\nThe rating of the phase advancing device is %.2f kVA",ph_adv_KVA);
+
+
+
+
+
+
|