diff options
Diffstat (limited to '3751/CH2/EX2.26/Ex2_26.sce')
-rw-r--r-- | 3751/CH2/EX2.26/Ex2_26.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3751/CH2/EX2.26/Ex2_26.sce b/3751/CH2/EX2.26/Ex2_26.sce new file mode 100644 index 000000000..5cc327b8e --- /dev/null +++ b/3751/CH2/EX2.26/Ex2_26.sce @@ -0,0 +1,24 @@ +//Fluid system - By - Shiv Kumar
+//Chapter 2 - Impact of Jet
+//Example 2.26
+ clc
+ clear
+
+//Given Data:-
+ H=4; //Head of water in tank, m
+ d=150; //Diameter of orfice, mm
+ Cv=0.96;
+
+//Data Used:-
+ rho=1000; //Density of water, kg/m^3
+ g=9.81; //Acceleration due to gravity, m/s^2
+
+
+//Computations:-
+ d=d/1000; //m
+ a=(%pi/4)*d^2; //cross-sectional are of orifice, m^2
+ V=Cv*sqrt(2*g*H); //Velocity of Jet, m/s
+ F=rho*a*V^2; //Force exerted on tank, N
+
+//Results:-
+ printf("The force exerted on the tank=%.2f n", F) //The answer vary due to round off error
|