summaryrefslogtreecommitdiff
path: root/147/CH13/EX13.18
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /147/CH13/EX13.18
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '147/CH13/EX13.18')
-rw-r--r--147/CH13/EX13.18/Example13_18.sce36
-rw-r--r--147/CH13/EX13.18/Result13_18.txt5
2 files changed, 41 insertions, 0 deletions
diff --git a/147/CH13/EX13.18/Example13_18.sce b/147/CH13/EX13.18/Example13_18.sce
new file mode 100644
index 000000000..dbcd46931
--- /dev/null
+++ b/147/CH13/EX13.18/Example13_18.sce
@@ -0,0 +1,36 @@
+//Rated Power Pr,Open cicuit Voltage, Current and Power Vo, Io and Po
+//Short cicuit Voltage, current and power Vs, Is and Ps
+close();
+clear;
+clc;
+Pr = 75000;
+V1 = 230;
+V2 = 115;
+Vs = 9.5;
+Is = 326;
+Ps = 1200;
+Vo = 115;//V
+Io = 16.3;//A
+Po = 750;//W
+Zs = Vs/Is;
+//Vs per unit 'Vsp'
+Vsp = Vs/V1;
+I1 = Pr/V1;
+Isp = Is/I1;
+Zsp = Vsp/Isp;
+Psp = Ps/Pr;
+Rsp = Psp/Isp^2;
+Xsp = (Zsp^2-Rsp^2)^(1/2);
+//For Pf= 0.8
+V2 = 1;
+Pf = 0.8;
+theta = -acos(Pf);
+V = 1;
+I = Isp*cos(theta)+Isp*sin(theta)*%i
+Z = Rsp + %i*Xsp;
+Vo = V + I*Z;
+Vor = polar(Vo);
+V_reg = (Vor-V2)/V2*100;
+nrated_load = Pr*Pf/(Pr*Pf+Po+Ps)*100;
+nhalf = (Pr/2)/(Pr/2+Po+Ps/4)*100;
+mprintf('Equivalent impedance in high voltage terms Zs = %0.3f ohm\nPer unit Zs = %0.4f pu\nVoltage regulation = %0.1f %%\nEfficiency at rated load = %0.2f %%\nEfficiency at half load = %0.2f %%',Zs,Zsp,V_reg,nrated_load,nhalf);
diff --git a/147/CH13/EX13.18/Result13_18.txt b/147/CH13/EX13.18/Result13_18.txt
new file mode 100644
index 000000000..81e1c3af1
--- /dev/null
+++ b/147/CH13/EX13.18/Result13_18.txt
@@ -0,0 +1,5 @@
+Equivalent impedance in high voltage terms Zs = 0.029 ohm
+Per unit Zs = 0.0413 pu
+Voltage regulation = 3.6 %
+Efficiency at rated load = 96.85 %
+Efficiency at half load = 97.28 % \ No newline at end of file