summaryrefslogtreecommitdiff
path: root/3482/CH4/EX4.4/Ex4_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3482/CH4/EX4.4/Ex4_4.sce')
-rw-r--r--3482/CH4/EX4.4/Ex4_4.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/3482/CH4/EX4.4/Ex4_4.sce b/3482/CH4/EX4.4/Ex4_4.sce
new file mode 100644
index 000000000..2945fa1f3
--- /dev/null
+++ b/3482/CH4/EX4.4/Ex4_4.sce
@@ -0,0 +1,13 @@
+clc;
+////page 168
+Ax=4.5//in m
+Ay=6//in m
+DF=sqrt((Ax^2)+(Ay^2))
+F=150//in KN
+Ex=-(Ax/DF)*F
+printf("Ex=%.2f kN \n",Ex);
+Ey=((Ay/DF)*F)+(4*20)
+printf("Ey=%.2f kN \n",Ey);
+
+M_E=-((20*7.2)+(20*5.4)+(20*3.6)+(20*1.8)-((Ay/DF)*F*Ax))
+printf("M_E=%.0f kN +ve sign shows reaction is directed as assumed \n",M_E);