diff options
Diffstat (limited to '1466/CH2/EX2.2/2_2.sce')
-rwxr-xr-x | 1466/CH2/EX2.2/2_2.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1466/CH2/EX2.2/2_2.sce b/1466/CH2/EX2.2/2_2.sce new file mode 100755 index 000000000..bfa8fa26d --- /dev/null +++ b/1466/CH2/EX2.2/2_2.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+W= 3000 //tons
+m= 15 //tons
+x= 30 //ft
+s= 1/30
+//CALCULATIONS
+GM= m*x/(W*s)
+//RESULTS
+printf (' Manometric height = %.1f ft',GM)
|