diff options
Diffstat (limited to '1364/CH5/EX5.1.1/5_1_1.sce')
-rwxr-xr-x | 1364/CH5/EX5.1.1/5_1_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1364/CH5/EX5.1.1/5_1_1.sce b/1364/CH5/EX5.1.1/5_1_1.sce new file mode 100755 index 000000000..3ad65f945 --- /dev/null +++ b/1364/CH5/EX5.1.1/5_1_1.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+w= 1100 //rev/min
+Q= 1 //ft^3/min
+r= 2 //in
+//CALCULATIONS
+Q1= r^2*Q
+N= w/r
+//RESULTS
+printf ('allowable speed = %.f rev/min',N)
|