diff options
Diffstat (limited to '3751/CH2/EX2.10/Ex2_10.sce')
-rw-r--r-- | 3751/CH2/EX2.10/Ex2_10.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/3751/CH2/EX2.10/Ex2_10.sce b/3751/CH2/EX2.10/Ex2_10.sce new file mode 100644 index 000000000..025d48f38 --- /dev/null +++ b/3751/CH2/EX2.10/Ex2_10.sce @@ -0,0 +1,21 @@ +//Fluid system - By - Shiv Kumar
+//Chapter 2 - Impact of Jet
+//Example 2.10
+ clc
+ clear
+//Given Data:-
+ V1=40; //Velocity of the Jet at Inlet, m/s
+ V2=32; //Velocity of the Jet at Outlet, m/s
+ theta=65; //Angle of Deflection from original direction, degrees
+ m=0.9; //Mass flow rate, kg/s
+
+//Computations:-
+ Fx=m*(V1-V2*cosd(theta)); //N (Answer in textbook is wrong)
+ Fy=m*V2*sind(theta); //N
+ F_R=sqrt(Fx^2+Fy^2); //Resultant Force, N
+ phi=atand(Fy/Fx); //Angle made by resultant with X-axis, degrees
+
+//Results:-
+ printf("Resultant Force, F_R=%.2f N at an angle, phi=%.2f Degrees to X-axis", F_R, phi) //The answer provided in the textbook is wrong
+
+
|