summaryrefslogtreecommitdiff
path: root/1904/CH8/EX8.2/8_2.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1904/CH8/EX8.2/8_2.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1904/CH8/EX8.2/8_2.sce')
-rwxr-xr-x1904/CH8/EX8.2/8_2.sce31
1 files changed, 31 insertions, 0 deletions
diff --git a/1904/CH8/EX8.2/8_2.sce b/1904/CH8/EX8.2/8_2.sce
new file mode 100755
index 000000000..3badcf151
--- /dev/null
+++ b/1904/CH8/EX8.2/8_2.sce
@@ -0,0 +1,31 @@
+//To determine the Capacitor bank required to correct power factor of induction motor
+//Page 393
+clc;
+clear;
+
+Vll=4.16; //Line to Line Voltage in kV
+Pr=(500*0.7457); //Rating of motor in kW
+pf1=0.75; //Initial Power Factor
+pfn=0.9; //Improved Power Factor
+eff=0.88; //Efficiency
+P=Pr/eff; //Input Power of Induction Motor
+Q1=P*tand(acosd(pf1)); //Reactive Power
+Q2=P*tand(acosd(pfn)); //REactive power of motor after power factor improvement
+f=60; //Frequency of supply
+w=2*%pi*f; //Angular Frequency
+Qc=Q1-Q2; //Reactive Power of Capacitor
+Il=Qc/(sqrt(3)*Vll);
+
+//Capacitor Connectd in Delta
+Ic1=Il/(sqrt(3));
+Xc1=Vll*1000/Ic1; //Reactance of each capacitor
+C1=(10^6)/(w*Xc1); //Capacitance in Micro Farad
+
+//Capacitor Connected in Wye
+Ic2=Il;
+Xc2=Vll*1000/(sqrt(3)*Ic2); //Reactance of each capacitor
+C2=(10^6)/(w*Xc2); //Capacitance in Micro Farad
+
+printf('\na) Rating of Capacitor Bank is %g kVAr\n',Qc)
+printf('b) The Value of Capacitance if there are connected in delta is %g micro F\n',C1)
+printf('c) The Value of Capacitance if there are connected in wye is %g micro F\n',C2)