diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3886/CH17/EX17.11 | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-master.tar.gz Scilab-TBC-Uploads-master.tar.bz2 Scilab-TBC-Uploads-master.zip |
Diffstat (limited to '3886/CH17/EX17.11')
-rw-r--r-- | 3886/CH17/EX17.11/17_11.sce | 17 | ||||
-rw-r--r-- | 3886/CH17/EX17.11/17_11.txt | 4 |
2 files changed, 21 insertions, 0 deletions
diff --git a/3886/CH17/EX17.11/17_11.sce b/3886/CH17/EX17.11/17_11.sce new file mode 100644 index 000000000..2b839ab0f --- /dev/null +++ b/3886/CH17/EX17.11/17_11.sce @@ -0,0 +1,17 @@ +//Vane is moving
+//refer fig. 17.12 (a) and (b)
+//Velocity of approach Va
+Va=20 //m/sec
+//Weight of water impinging in t seconds=385.24*t
+//Velocity of departure Vd
+Vd=30-10 //m/sec
+//Writing impulse momentum equation in x direction
+Px=105.22 //N
+Py=392.70 //N
+P=sqrt((Px^2)+(Py^2)) //N
+//inclination
+theta=atand(Py/Px) //degree
+printf("\nPressure exerted P=%.3f N",P)
+
+
+
diff --git a/3886/CH17/EX17.11/17_11.txt b/3886/CH17/EX17.11/17_11.txt new file mode 100644 index 000000000..28fc05948 --- /dev/null +++ b/3886/CH17/EX17.11/17_11.txt @@ -0,0 +1,4 @@ +
+--> exec('E:\My program EM\17. Impulse momentum\17.11.sce', -1)
+
+Pressure exerted P=406.552 N
\ No newline at end of file |