diff options
Diffstat (limited to '1364/CH6/EX6.3.1')
-rwxr-xr-x | 1364/CH6/EX6.3.1/6_3_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1364/CH6/EX6.3.1/6_3_1.sce b/1364/CH6/EX6.3.1/6_3_1.sce new file mode 100755 index 000000000..8708d7379 --- /dev/null +++ b/1364/CH6/EX6.3.1/6_3_1.sce @@ -0,0 +1,11 @@ +clc
+//initialisation of variables
+p= 60 //lbf/in^2
+w= 62.4 //lbf/ft^3
+l= 1 //ft
+g= 32.2 //ft/sec^2
+//CALCULATIONS
+i= p*144/(w*l)
+a= i*g
+//RESULTS
+printf ('accelaration of fluid = %.f ft/sec^2',a)
|