diff options
Diffstat (limited to '1466/CH3/EX3.8/3_8.sce')
-rwxr-xr-x | 1466/CH3/EX3.8/3_8.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1466/CH3/EX3.8/3_8.sce b/1466/CH3/EX3.8/3_8.sce new file mode 100755 index 000000000..dccf50205 --- /dev/null +++ b/1466/CH3/EX3.8/3_8.sce @@ -0,0 +1,12 @@ +
+clc
+//initialisation of variables
+h= 3 //in
+g= 32.2 //ft/sec^2
+r= 1.5 //in
+//CALCULATIONS
+w= sqrt((h/12)*2*g/(r/12)^2)
+V= w/(2*%pi)
+V1= V*60/2
+//RESULTS
+printf (' number of revolutions per minute made by engine at that engine = %.1f r.p.m ',V1)
|