summaryrefslogtreecommitdiff
path: root/1628/CH16/EX16.15
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.15
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.15')
-rwxr-xr-x1628/CH16/EX16.15/Ex16_15.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1628/CH16/EX16.15/Ex16_15.sce b/1628/CH16/EX16.15/Ex16_15.sce
new file mode 100755
index 000000000..576a54f3c
--- /dev/null
+++ b/1628/CH16/EX16.15/Ex16_15.sce
@@ -0,0 +1,16 @@
+
+
+ // Examle 16.15
+
+t=2000; // Torque
+N=900; // Speed
+Ploss=8000; // Power loss
+Pin=(2*%pi*t*N)/60; // Input Power (Pin)
+disp(' Input Power (Pin) '+string(Pin/1000)+' kW');
+
+Pd=Pin-Ploss; // Power Generated in Armature (Pd)
+disp(' Power Generated in Armature (Pd) = '+string(Pd/1000)+' kW');
+
+
+
+ // p 651 16.15 \ No newline at end of file