summaryrefslogtreecommitdiff
path: root/1325/CH3/EX3.6/3_6.sce
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.6/3_6.sce
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.6/3_6.sce')
-rw-r--r--1325/CH3/EX3.6/3_6.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/1325/CH3/EX3.6/3_6.sce b/1325/CH3/EX3.6/3_6.sce
new file mode 100644
index 000000000..d6143ffdf
--- /dev/null
+++ b/1325/CH3/EX3.6/3_6.sce
@@ -0,0 +1,19 @@
+//To find the acceleration of P realative to the fixed point O
+clc
+//Given
+printf("\n")
+OP=2//ft
+f=4//ft/s^2
+w=2 //rad/s (anticlockwise)
+a=5 //rad/s^2 (anticlockwise)
+Vpq=3 //ft/s
+r=OP
+os=w^2*r//component 1
+sq=a*r//component 2
+qt=f//component 3
+tp=2*w*Vpq//component 4
+Aqo=(os^2+sq^2)^1/2//vector addition of component(a,b)
+Apq=(qt^2+tp^2)^1/2//vector addition of component(c,d)
+//Apo=Apq+Aqo (vector addition)
+Apo=((os-qt)^2+(sq+tp)^2)^(1/2)
+printf("Acceleration of P realative to fixed point O is %.1f ft/s^2",Apo)