summaryrefslogtreecommitdiff
path: root/1325/CH3/EX3.3
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.3
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.3')
-rw-r--r--1325/CH3/EX3.3/3_3.PNGbin0 -> 93557 bytes
-rw-r--r--1325/CH3/EX3.3/3_3.sce25
2 files changed, 25 insertions, 0 deletions
diff --git a/1325/CH3/EX3.3/3_3.PNG b/1325/CH3/EX3.3/3_3.PNG
new file mode 100644
index 000000000..9b300293c
--- /dev/null
+++ b/1325/CH3/EX3.3/3_3.PNG
Binary files differ
diff --git a/1325/CH3/EX3.3/3_3.sce b/1325/CH3/EX3.3/3_3.sce
new file mode 100644
index 000000000..eb7bd3682
--- /dev/null
+++ b/1325/CH3/EX3.3/3_3.sce
@@ -0,0 +1,25 @@
+//To find velocities of point p, x and y
+clc
+//Given
+OC=6//in
+CP=24//in
+N=240//rpm
+X=45//degrees
+XP=19//in
+XC=6//in
+YP=32//in
+YC=9//in
+//Scalling off lenghts from fig , we have
+CI=2.77//in
+PI=2.33//in
+XI=2.33//in
+YI=3.48//in
+//Solution
+Vc=((%pi*N)/30)*(OC/12)//changing OP into feets
+printf("\nw=%.2f ft/s\n",Vc)
+//w=Vc/CI=Vp/PI=Vx/XI=Vy/YI
+w=Vc/CI
+Vp=w*PI
+Vx=w*XI
+Vy=w*YI
+printf("velocity of points P, X and Y are %.2f ft/s, %.2f ft/s and %.1f ft/s respectively",Vp,Vx,Vy)