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/CH22/EX22.4 | |
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/CH22/EX22.4')
-rw-r--r-- | 3886/CH22/EX22.4/22_4.sce | 17 | ||||
-rw-r--r-- | 3886/CH22/EX22.4/22_4.txt | 5 |
2 files changed, 22 insertions, 0 deletions
diff --git a/3886/CH22/EX22.4/22_4.sce b/3886/CH22/EX22.4/22_4.sce new file mode 100644 index 000000000..ec7aa2d40 --- /dev/null +++ b/3886/CH22/EX22.4/22_4.sce @@ -0,0 +1,17 @@ +//Length of crank
+//refer fig. 22.6 (a)
+//angular velocity
+omega=(1500*2*%pi)/(60) //rad/sec
+r=0.100
+//Tangential velocity of end B
+vB=r*omega //m/sec
+//Consider motion of connecting rod BC
+theta=asind((100*sind(30))/(250)) //degree
+//Refer fig. 22.6
+//Let omega' be the angular velocity of BC
+omega1=13.6035/0.244 //rad/sec
+//Considering horizontal component of velocities
+vC=15.7080*cosd(60)+0.25*55.547*sind(11.5378) //m/sec
+printf("\nomega1=%.3f rad/sec\nvC=%.2f m/sec",omega1,vC)
+
+
diff --git a/3886/CH22/EX22.4/22_4.txt b/3886/CH22/EX22.4/22_4.txt new file mode 100644 index 000000000..275ff3aa0 --- /dev/null +++ b/3886/CH22/EX22.4/22_4.txt @@ -0,0 +1,5 @@ +
+--> exec('E:\My program EM\22.General plane motion of rigid bodies\22.4.sce', -1)
+
+omega1=55.752 rad/sec
+vC=10.63 m/sec
\ No newline at end of file |