diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3751/CH2/EX2.10/Ex2_10.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
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
+
+
|