summaryrefslogtreecommitdiff
path: root/1325/CH3/EX3.7
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1325/CH3/EX3.7
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1325/CH3/EX3.7')
-rw-r--r--1325/CH3/EX3.7/3_7.PNGbin0 -> 96715 bytes
-rw-r--r--1325/CH3/EX3.7/3_7.sce26
2 files changed, 26 insertions, 0 deletions
diff --git a/1325/CH3/EX3.7/3_7.PNG b/1325/CH3/EX3.7/3_7.PNG
new file mode 100644
index 000000000..3c2dea696
--- /dev/null
+++ b/1325/CH3/EX3.7/3_7.PNG
Binary files differ
diff --git a/1325/CH3/EX3.7/3_7.sce b/1325/CH3/EX3.7/3_7.sce
new file mode 100644
index 000000000..31fdca8a3
--- /dev/null
+++ b/1325/CH3/EX3.7/3_7.sce
@@ -0,0 +1,26 @@
+//to find velocity and acceleration of ram R
+clc
+printf("\n")
+//GIVEN
+OC=8//inches
+CP=4//inches
+N=60//inches
+ON=15//inches
+RN=6//inches
+X=120//degrees
+OP=10.6
+OQ=OP
+//from fig 65(a)
+Vq=1.56//ft/s
+Vrn=0.74//ft/s
+//from fig 65(b)
+ftq=3.74//ft/s^2
+ftrn=2.03//ft/s^2
+w1=(%pi*N)/30
+w=Vq/(OQ/12)
+wrn=Vrn/(RN/12)
+a=ftq/(OP/12)//Angular acceleration of ON
+a1=ftrn/(RN/12)//angular acceleration of RN
+printf("W=%.2f rad/s\nWrn=%.2f rad/s\n",w,wrn)
+printf("Angular acceleration of ON= %.2f rad/s^2\nAngular acceleration of RN=%.2f rad/s^2\n",a,a1)
+