diff options
Diffstat (limited to '1466/CH1/EX1.6/1_6.sce')
-rwxr-xr-x | 1466/CH1/EX1.6/1_6.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1466/CH1/EX1.6/1_6.sce b/1466/CH1/EX1.6/1_6.sce new file mode 100755 index 000000000..3b75540c4 --- /dev/null +++ b/1466/CH1/EX1.6/1_6.sce @@ -0,0 +1,10 @@ +clc
+//initialisation of variables
+dh= 2 //in
+d= 13.6 //kg/m^3
+w= 62.4 //lbf/ft^3
+//CALCULATIONS
+x= d*dh-dh
+P= w*x/(144*12)
+//RESULTS
+printf (' presure = %.2f Lb/in^2',P)
|