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 /2078/CH5/EX5.10/Example5_10.sce | |
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 '2078/CH5/EX5.10/Example5_10.sce')
-rwxr-xr-x | 2078/CH5/EX5.10/Example5_10.sce | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/2078/CH5/EX5.10/Example5_10.sce b/2078/CH5/EX5.10/Example5_10.sce new file mode 100755 index 000000000..f32f97e6f --- /dev/null +++ b/2078/CH5/EX5.10/Example5_10.sce @@ -0,0 +1,33 @@ +//Exa 5.10
+clc;
+clear;
+close;
+//Given data :
+l=200;//km
+P=50;//MVA
+VRL=132*10^3;//Volt
+f=50;//Hz
+R=l*0.15;//ohm
+X=l*0.50;//ohm
+Y=l*2*10^-6;//mho
+pf=0.85;//power factor
+cos_fi_r=pf;
+sin_fi_r=sqrt(1-cos_fi_r^2);
+VR=VRL/sqrt(3);//Volt
+IR=P*10^6/(sqrt(3)*VRL);//A
+Z=R+%i*X;//ohm
+IR=IR*(cos_fi_r-%i*sin_fi_r);//A
+Vdash=VR+1/2*IR*Z;//Volt
+IC=Vdash*%i*Y;//A
+IS=IR+IC;//A
+disp("Sending end current(A), magnitude is "+string(abs(IS))+" and angle in degree is "+string(atand(imag(IS),real(IS))));
+VS=Vdash+1/2*IS*Z;//Volt
+VSL=abs(VS)*sqrt(3);//Volt
+disp(VSL/1000,"Sending end line voltage(kV) :");
+Reg=(VSL-VRL)/VRL*100;//%
+disp(Reg,"Regulation(%) : ");
+fi_s=atand(imag(VS),real(VS))-atand(imag(IS),real(IS));//
+cos_fi_s=cosd(fi_s);//sending end pf
+Eta_T=sqrt(3)*VRL*abs(IR)*cos_fi_r/(sqrt(3)*VSL*abs(IS)*cos_fi_s)*100;//%
+disp(Eta_T,"Transmission Efficiency(%) : ");
+//Ans is wrong in the book.Angle of VS is calculated wrong leads to wrong answers.
|