diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /83/CH5/EX5.3 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '83/CH5/EX5.3')
-rwxr-xr-x | 83/CH5/EX5.3/example_5_3.sce | 24 | ||||
-rwxr-xr-x | 83/CH5/EX5.3/result_example_5_3.txt | 6 |
2 files changed, 30 insertions, 0 deletions
diff --git a/83/CH5/EX5.3/example_5_3.sce b/83/CH5/EX5.3/example_5_3.sce new file mode 100755 index 000000000..195c0b5c0 --- /dev/null +++ b/83/CH5/EX5.3/example_5_3.sce @@ -0,0 +1,24 @@ +//Chapter 5 +//Example 5.3 +//page 135 +//problem with mixed end condition +clc;clear; +Vr=3000; //receiving end voltage +pfs=0.8; //sending end power factor +Ps=2000*10^3; //sending end active power +z=0.4+%i*0.4; //series impedance +Ss=Ps/pfs; //sending end VA +Qs=Ss*sqrt(1-pfs^2); //sending end reacive power + +//by substituting all the values to the equation (iii) +deff('[y]=fx(I)',"y=(Vr^2)*(I^2)+2*Vr*(I^2)*(real(z)*((Ps-real(z)*(I^2))/Vr)+imag(z)*((Qs-imag(z)*(I^2))/Vr))+(abs(z))^2*(I^4)-(Ss^2)"); +I=fsolve(100,fx); + +pfR=(Ps-real(z)*(I^2))/(Vr*I); //Cos(phi_r) +Pr=Vr*I*pfR; +Vs=(Ps/(I*pfs)); + +printf('\nLoad Current |I|= %0.2f A',I); +printf('\nLoad Pr=%d W',Pr); +printf('\nReceiving end power factor=%0.2f',pfR); +printf('\nSupply Voltage=%0.2fV',Vs); diff --git a/83/CH5/EX5.3/result_example_5_3.txt b/83/CH5/EX5.3/result_example_5_3.txt new file mode 100755 index 000000000..537ce19ff --- /dev/null +++ b/83/CH5/EX5.3/result_example_5_3.txt @@ -0,0 +1,6 @@ + +Load Current |I|= 733.14 A +Load Pr=1785001 W +Receiving end power factor=0.81 +Supply Voltage=3409.99V + |