summaryrefslogtreecommitdiff
path: root/1628/CH16/EX16.15/Ex16_15.sce
diff options
context:
space:
mode:
Diffstat (limited to '1628/CH16/EX16.15/Ex16_15.sce')
-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