summaryrefslogtreecommitdiff
path: root/Working_Examples/83/CH5/EX5.8
diff options
context:
space:
mode:
authorSiddharth Agarwal2019-09-03 18:27:40 +0530
committerSiddharth Agarwal2019-09-03 18:27:40 +0530
commit8ac15bc5efafa2afc053c293152605b0e6ae60ff (patch)
treee1bc17aae137922b1ee990f17aae4a6cb15b7d87 /Working_Examples/83/CH5/EX5.8
parent52a477ec613900885e29c4a0b02806a415b4f83a (diff)
downloadXcos_block_examples-master.tar.gz
Xcos_block_examples-master.tar.bz2
Xcos_block_examples-master.zip
Xcos examples from textbooks and for blocksHEADmaster
Diffstat (limited to 'Working_Examples/83/CH5/EX5.8')
-rwxr-xr-xWorking_Examples/83/CH5/EX5.8/example_5_8.sce56
-rwxr-xr-xWorking_Examples/83/CH5/EX5.8/result_example_5_8.txt15
2 files changed, 71 insertions, 0 deletions
diff --git a/Working_Examples/83/CH5/EX5.8/example_5_8.sce b/Working_Examples/83/CH5/EX5.8/example_5_8.sce
new file mode 100755
index 0000000..6479e6a
--- /dev/null
+++ b/Working_Examples/83/CH5/EX5.8/example_5_8.sce
@@ -0,0 +1,56 @@
+//Chapter 5
+//Example 5.8
+//page 162
+//to estimate the torque angle and station powerfactor
+clear;clc;
+Sd1=15+%i*5;
+Sd2=25+%i*15;
+//case(a) cable impedance=j0.05pu
+r=0;
+x=%i*0.05;
+PG1=20;
+PG2=20;
+Ps=5;Pr=5;
+V1=1;
+V2=1;
+d1=asind(Ps*abs(x)/(V1*V2)); //delta1
+V1=V1*(cosd(d1)+%i*sind(d1));
+Qs=((abs(V1)^2)/abs(x))-((abs(V1)*abs(V2))*cosd(d1)/(abs(x)));
+Qr=(((abs(V1)*abs(V2))*cosd(d1)/(abs(x)))-(abs(V1)^2)/abs(x));
+Ql=Qs-Qr;
+Ss=Ps+%i*Qs;
+Sr=Pr+%i*Qr;
+Sg1=Sd1+Ss;
+Sg2=Sd2-Sr;
+pf1=cos(atan(imag(Sg1)/real(Sg1)));
+pf2=cos(atan(imag(Sg2)/real(Sg2)));
+printf('\n\nCase(a)\nTotal load on station1=%d+j%0.3f pu',real(Sg1),imag(Sg1));
+printf('\nPower factor of station1=%0.3f pu lagging',pf1);
+printf('\n\Total load on station2=%d+j%0.3f pu',real(Sg2),imag(Sg2));
+printf('\nPower factor of station2=%0.3f pu lagging',pf2);
+//case(b) cable impedance=0.005+j0.05;
+r=0.005;
+PG1=20;
+V1=1;V2=1;
+Ps=5;
+//from the eq(i) in the textbook,we can calculate d1
+z=r+x;
+theta=atand(imag(z)/real(z));
+z=abs(z);
+d1=acosd(z*(V1^2*cosd(theta)/z-Ps)/(V1*V2))-theta;
+Qs=(V1^2*sind(theta)/z)-(V1*V2*sind(theta+d1)/z);
+Qg1=5+Qs;
+Pr=(V1*V2*cosd(theta-d1)/z)-(V1^2*cosd(theta)/z);
+Pg2=25-Pr;
+Qr=(V1*V2*sind(theta-d1)/z)-(V1^2*sind(theta)/z);
+Qg2=15-Qr;
+Ss=Ps+%i*Qs;
+Sr=Pr+%i*Qr;
+Sg1=Sd1+Ss;
+Sg2=Sd2-Sr;
+pf1=cos(atan(imag(Sg1)/real(Sg1)));
+pf2=cos(atan(imag(Sg2)/real(Sg2)));
+printf('\n\nCase(b)\nTotal load on station1=%d+j%0.3f pu',real(Sg1),imag(Sg1));
+printf('\nPower factor of station1=%0.3f pu lagging',pf1);
+printf('\n\Total load on station2=%d+j%0.3f pu',real(Sg2),imag(Sg2));
+printf('\nPower factor of station2=%0.3f pu lagging\n\n',pf2);
diff --git a/Working_Examples/83/CH5/EX5.8/result_example_5_8.txt b/Working_Examples/83/CH5/EX5.8/result_example_5_8.txt
new file mode 100755
index 0000000..b7f4dee
--- /dev/null
+++ b/Working_Examples/83/CH5/EX5.8/result_example_5_8.txt
@@ -0,0 +1,15 @@
+
+
+Case(a)
+Total load on station1=20+j5.635 pu
+Power factor of station1=0.963 pu lagging
+Total load on station2=20+j15.635 pu
+Power factor of station2=0.788 pu lagging
+
+Case(b)
+Total load on station1=20+j5.132 pu
+Power factor of station1=0.969 pu lagging
+Total load on station2=20+j16.119 pu
+Power factor of station2=0.781 pu lagging
+
+