diff options
Diffstat (limited to '1325/CH3/EX3.6/3_6.sce')
-rw-r--r-- | 1325/CH3/EX3.6/3_6.sce | 19 |
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)
|