summaryrefslogtreecommitdiff
path: root/1628/CH16/EX16.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1628/CH16/EX16.9
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 '1628/CH16/EX16.9')
-rwxr-xr-x1628/CH16/EX16.9/Ex16_9.sce31
1 files changed, 31 insertions, 0 deletions
diff --git a/1628/CH16/EX16.9/Ex16_9.sce b/1628/CH16/EX16.9/Ex16_9.sce
new file mode 100755
index 000000000..121bc571f
--- /dev/null
+++ b/1628/CH16/EX16.9/Ex16_9.sce
@@ -0,0 +1,31 @@
+
+ // Examle 16.9
+
+
+Vo=210; // Supply voltage
+Il=195; // Full-load current
+Po=Vo*Il; // O/p power
+n=0.9; // Efficiency
+Pin=Po/n; // I/p power
+Tl=Pin-Po; // Total loss
+Rsh=52.5; // Shunt field resistance
+Ish=Vo/Rsh; // Shunt field current
+Ia=Il+Ish; // Armeture Current (Ia)
+Cl=Ish^2*Rsh; // Shunt field copper loss
+Hl=710; // Stray losses
+CL=Cl+Hl // Constant loss
+Al=4550-CL; // Armature copper loss
+Ra=Al/Ia^2; // Armature resistance
+disp('Armature resistance = '+string(Ra)+' Ohms');
+
+ // ==> for maximum effciency (Ia^2*RA= Pc = 1550 )
+
+Ia1=sqrt(CL/0.0757); // Armeture Current for maximum efficiency ==>{Ra=0.0757557 ,but here we have Ra=0.0757}
+disp(' Armeture Current = '+string(Ia1)+' Amp');
+
+IL=Ia1-Ish; // Load current
+disp(' Load current (IL) = '+string(IL)+' Amp');
+
+
+
+ // p 642 16.9