summaryrefslogtreecommitdiff
path: root/3826/CH1/EX1.4/Ex1_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3826/CH1/EX1.4/Ex1_4.sce')
-rw-r--r--3826/CH1/EX1.4/Ex1_4.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3826/CH1/EX1.4/Ex1_4.sce b/3826/CH1/EX1.4/Ex1_4.sce
new file mode 100644
index 000000000..5adad4b2d
--- /dev/null
+++ b/3826/CH1/EX1.4/Ex1_4.sce
@@ -0,0 +1,18 @@
+//Example 1_4 page no:47
+clc;
+//given
+//In text book the answers are rounded off so result vary slightly with text book
+power = 15*1000;//in W
+I = 60;
+rpm = 450;
+E = 322;
+I = 41.2;
+full_load_torque = (power*I)/(2*%pi*rpm);
+output = E*I;
+disp(output,"the output from the machine is (in W)");
+mac_input = (2*%pi*rpm*318)/60;
+disp(mac_input,"the mechanical input to the machine from the load if it were running at 450 rev/min would be(in W)");
+//rpm at 500;
+rpm = 500;
+mac_input = (2*%pi*rpm*318)/60;
+disp(mac_input,"the mechanical input to the machine at 500 rev/min is (in W)");