diff options
Diffstat (limited to '1052/CH9/EX9.1/1.sce')
-rwxr-xr-x | 1052/CH9/EX9.1/1.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1052/CH9/EX9.1/1.sce b/1052/CH9/EX9.1/1.sce new file mode 100755 index 000000000..b8faee21e --- /dev/null +++ b/1052/CH9/EX9.1/1.sce @@ -0,0 +1,16 @@ +clc;
+//Example 9.1
+//page no 87
+printf("Example 9.1 page no 87\n\n");
+//a horizontal water jet impinges on avertical plate
+rho=62.4//density of water
+v=100//horizontal velocity of water
+q=0.5//flow rate
+g=32.2//gravitational constant
+printf("\n density rho=%f lb/ft^3\n horizontal velocity of water v=%f ft/s\n flow rate q=%f ft^3/s",rho,v,q);
+M_in=(rho*q*v)/g//momentum rate of inlet water in the horizontal direction
+printf("\n momentum rate M_in=%f lbf",M_in);
+M_out=0//momentum rate of water out
+F=M_out-M_in
+printf("\n net horizontal force F=%f lbf",F);
+//negative sign indicate that to hold the plate in place, a force must be exerted in a direction opposite to that of the water flow
|