diff options
Diffstat (limited to '1466/CH1/EX1.4/1_4.sce')
-rwxr-xr-x | 1466/CH1/EX1.4/1_4.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1466/CH1/EX1.4/1_4.sce b/1466/CH1/EX1.4/1_4.sce new file mode 100755 index 000000000..32a6fdef5 --- /dev/null +++ b/1466/CH1/EX1.4/1_4.sce @@ -0,0 +1,9 @@ +clc
+//initialisation of variables
+w= 62.4 //lbf/ft^3
+H= 6 //ft
+W= 5 //ft
+//CALCULATIONS
+P= w*H^2*W/2
+//RESULTS
+printf (' presure on end= %.2f Lb',P)
|