From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 83/CH5/EX5.1/example_5_1.sce | 43 +++++++++++++++++++++++++++++++++++++ 83/CH5/EX5.1/result_example_5_1.txt | 11 ++++++++++ 2 files changed, 54 insertions(+) create mode 100755 83/CH5/EX5.1/example_5_1.sce create mode 100755 83/CH5/EX5.1/result_example_5_1.txt (limited to '83/CH5/EX5.1') diff --git a/83/CH5/EX5.1/example_5_1.sce b/83/CH5/EX5.1/example_5_1.sce new file mode 100755 index 000000000..d64c73510 --- /dev/null +++ b/83/CH5/EX5.1/example_5_1.sce @@ -0,0 +1,43 @@ +//Chapter 5 +//Example 5.1 +//page 132 +//To find sending-end voltage and voltage regulation +clc;clear; + +load1=5000; //kW +pf=0.707; +Vr=10000; //receiving end voltage +R=0.0195*20; +X=2*%pi*50*0.63*10^-3*20; + +//to find sending end voltage and voltage regulation +I=load1*1000/(Vr*pf); +Vs=Vr+I*(R*pf+X*sin(acos(pf))); +voltage_regulation=(Vs-Vr)*100/Vr; +printf('\n\nReceiving current =I=%d A\n',I); +printf('Sending end voltage =Vs=%d V\n',Vs); +printf('Voltage Regulation=%0.2f %%',voltage_regulation); + +//to find the value of the capacitor to be connected in parallel to the load +voltage_regulation_desi=voltage_regulation/2; +Vs=(voltage_regulation_desi/100)*Vr+Vr; +//by solving the equations (i) and (ii) +pf=0.911; +Ir=549; +Ic=(Ir*(pf-%i*sin(acos(pf))))-(707*(0.707-%i*0.707)); +Xc=(Vr/imag(Ic)); +c=(2*%pi*50*Xc)^-1; +printf('\n\nCapacitance to be connected across the load so as to reduce voltage regulation by half of the above voltage regulation is given by :\n C = %d uF\n',c*10^6); + +//to find efficiency in both the cases +//case(i) +losses=I*I*R*10^-3; +n=(load1/(load1+losses))*100; +printf('\n Efficiency in : \nCase(i) \t n=%0.1f%%',n); +//caase(ii) +losses=Ir*Ir*R*10^-3; +n=(load1/(load1+losses))*100; +printf('\nCase(ii) \t n=%0.1f%%',n); + + + diff --git a/83/CH5/EX5.1/result_example_5_1.txt b/83/CH5/EX5.1/result_example_5_1.txt new file mode 100755 index 000000000..99064b387 --- /dev/null +++ b/83/CH5/EX5.1/result_example_5_1.txt @@ -0,0 +1,11 @@ + +Receiving current =I=707 A +Sending end voltage =Vs=12174 V +Voltage Regulation=21.75 % + +Capacitance to be connected across the load so as to reduce voltage regulation by half of the above voltage regulation is given by : + C = 87 uF + + Efficiency in : +Case(i) n=96.2% +Case(ii) n=97.7% -- cgit