summaryrefslogtreecommitdiff
path: root/1835/CH1/EX1.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1835/CH1/EX1.7
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1835/CH1/EX1.7')
-rwxr-xr-x1835/CH1/EX1.7/Ex1_7.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/1835/CH1/EX1.7/Ex1_7.sce b/1835/CH1/EX1.7/Ex1_7.sce
new file mode 100755
index 000000000..e8cc42b98
--- /dev/null
+++ b/1835/CH1/EX1.7/Ex1_7.sce
@@ -0,0 +1,24 @@
+//CHAPTER 1 ILLUSRTATION 7 PAGE NO 21
+//TITLE:Basic kinematics
+//Figure 1.24,1.25
+clc
+clear
+pi=3.141
+Noa=600// speed of the crank in rpm
+OA=2.8// length of link OA in cm
+AB=4.4// length of link AB in cm
+BC=4.9// length of link BC in cm
+BD=4.6// length of link BD in cm
+//=================
+wOA=2*pi*Noa/60// angular velocity of crank in rad/s
+Vao=wOA*OA// The linear velocity of point A with respect to oin m/s
+s=50// scale of velocity diagram in cm
+od=2.95// by measurement in cm from figure
+Vd=od*s/100// linear velocity slider in m/s
+bd=3.2// by measurement in cm from figure
+Vbd=bd*s
+wBD=Vbd/BD// angular velocity of link BD
+printf('linear velocity slider D= %.3f m/s\n angular velocity of link BD= %.1f rad/s',Vd,wBD)
+
+
+