diff options
Diffstat (limited to '1466/CH1/EX1.8/1_8.sce')
-rwxr-xr-x | 1466/CH1/EX1.8/1_8.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1466/CH1/EX1.8/1_8.sce b/1466/CH1/EX1.8/1_8.sce new file mode 100755 index 000000000..c50c73ec7 --- /dev/null +++ b/1466/CH1/EX1.8/1_8.sce @@ -0,0 +1,11 @@ +clc
+//initialisation of variables
+h= 10 //ft
+h1= 3 //ft
+w= 62.4 //lbf/in^2
+//CALCULATIONS
+H= h+(h1/2)
+A= h1^2
+P= A*H*w
+//RESULTS
+printf (' total pressure on the sluice = %.f Lb',P)
|