diff options
Diffstat (limited to '1484/CH8/EX8.5/8_5.sce')
-rwxr-xr-x | 1484/CH8/EX8.5/8_5.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1484/CH8/EX8.5/8_5.sce b/1484/CH8/EX8.5/8_5.sce new file mode 100755 index 000000000..7a2923db0 --- /dev/null +++ b/1484/CH8/EX8.5/8_5.sce @@ -0,0 +1,12 @@ +clc
+//initialisation of variables
+d= 3 //in
+v1= 80 //ft/sec
+v2= 40 //ft/sec
+w= 62.4 //lbs/ft^3
+g= 32.2 //ft/sec^2
+//CALCULATIONS
+vr= v1-v2
+P= w*vr*v2*%pi*(d/12)^2/(g*4)
+//RESULTS
+printf ('normal pressure on the plate when jet strikes= %.1f lbs',P)
|