diff options
Diffstat (limited to '3886/CH3/EX3.3/Ex3_3.sce')
-rw-r--r-- | 3886/CH3/EX3.3/Ex3_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3886/CH3/EX3.3/Ex3_3.sce b/3886/CH3/EX3.3/Ex3_3.sce new file mode 100644 index 000000000..9115560e8 --- /dev/null +++ b/3886/CH3/EX3.3/Ex3_3.sce @@ -0,0 +1,11 @@ +//Determine Resultant
+//horizontal direction is assumed as x-axis and vertical as y-axis
+Rx=-20*cosd(60) //kN (towards left)
+Ry=-20-30-20*sind(60) //kN (downwards)
+R=sqrt(Rx^2+Ry^2) //kN
+alpha=atand(Ry/Rx) //degree (as shown in fig. 3.12(b))
+//Taking moment about A
+MA=20*1.5+30*3+20*6*sind(60) //kN-m
+//x-intercept of the resultant is
+x=MA/Ry //m (shown in fig.)
+printf("R=%.2f kN as shown in fig. 3.12(a)",R)
|