summaryrefslogtreecommitdiff
path: root/2273/CH5/EX5.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2273/CH5/EX5.6
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 '2273/CH5/EX5.6')
-rwxr-xr-x2273/CH5/EX5.6/ex5_6.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/2273/CH5/EX5.6/ex5_6.sce b/2273/CH5/EX5.6/ex5_6.sce
new file mode 100755
index 000000000..4ee12b4df
--- /dev/null
+++ b/2273/CH5/EX5.6/ex5_6.sce
@@ -0,0 +1,27 @@
+//Find current and voltage of sending end, percentage regulation,line losses, sending end power factor and transmission efficiency
+clear;
+clc;
+//soltion
+//given
+R=0.6125*100;//ohm//total resistance
+X=1*100;//ohm//reactance
+Y=17.5*10^-4;//S//total susecptance
+Vr=66*1000;//V
+pf=0.8;//power factor
+P=20*10^6;//watts
+Ir=(P/(Vr*pf))*complex(pf,-0.6);
+Ic=complex(0,Y*Vr);
+Is=Ir+Ic;
+theta1=atand((imag(Is)/real(Is)));
+printf("Sending end current= %.2f∠%.3f°A\n",abs(Is),theta1);
+Vs=Vr+Is*(complex(R,X));
+theta2=atand((imag(Vs)/real(Vs)));
+printf("Sending end voltage= %.3f∠%.2f°Volts\n",abs(Vs),theta2);
+phi=theta2-theta1;
+printf("sending end power factor= %.3f(lag)\n",cosd(phi));
+Pr=((abs(Vs)-Vr)*100)/Vr;
+printf("Percentage regulation= %.1f percent\n",Pr);
+Ll=(abs(Is))^2*R/1000;//line losses
+printf("Total Line Losses= %.3fkW\n",Ll);
+nt=P*100/(P+Ll*1000);
+printf("Transmission efficiency= %.2f percent",nt)