diff options
Diffstat (limited to '1280/CH6/EX6.1/6_1.sce')
-rwxr-xr-x | 1280/CH6/EX6.1/6_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1280/CH6/EX6.1/6_1.sce b/1280/CH6/EX6.1/6_1.sce new file mode 100755 index 000000000..0777914eb --- /dev/null +++ b/1280/CH6/EX6.1/6_1.sce @@ -0,0 +1,11 @@ +clc
+//initialisation of variables
+P= 2500 //psi
+Q= 3 //gpm
+p= 5 //Bhp
+N= 1725 //rpm
+//CALCULATIONS
+eo= P*Q*100/(1714*p)
+To= p*5250/N
+//RESULTS
+printf ('input torque = %.2f lb-ft',To)
|