diff options
Diffstat (limited to '3843/CH3/EX3.6/Ex3_6.sce')
-rw-r--r-- | 3843/CH3/EX3.6/Ex3_6.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3843/CH3/EX3.6/Ex3_6.sce b/3843/CH3/EX3.6/Ex3_6.sce new file mode 100644 index 000000000..c075fbd93 --- /dev/null +++ b/3843/CH3/EX3.6/Ex3_6.sce @@ -0,0 +1,11 @@ +// Example 3_6
+clc;funcprot(0);
+// Given data
+T=100;// The torque in N.m
+n=3000;// rpm
+
+// Calculation
+omega=n*(2*%pi)*(1/60);// rad/s
+W=T*omega;// The power in W
+Hp=W/746;// The horse power in hp
+printf("\nThe horse power delivered,Hp=%2.1f hp",Hp);
|