summaryrefslogtreecommitdiff
path: root/3772/CH10/EX10.1/Ex10_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3772/CH10/EX10.1/Ex10_1.sce')
-rw-r--r--3772/CH10/EX10.1/Ex10_1.sce34
1 files changed, 34 insertions, 0 deletions
diff --git a/3772/CH10/EX10.1/Ex10_1.sce b/3772/CH10/EX10.1/Ex10_1.sce
new file mode 100644
index 000000000..1cc6b9416
--- /dev/null
+++ b/3772/CH10/EX10.1/Ex10_1.sce
@@ -0,0 +1,34 @@
+// Problem no 10.1,Page No.249
+
+clc;clear;
+close;
+
+//Consider Equilibrium of joint A
+//As there are no Load applied at A members AC and AB have nothing to Balance
+//So they are null members
+F_AB=0
+F_AC=0
+
+//Consider Equilibrium of joint B
+
+//Applying the summation of horizontal forces we get
+F_DB=4*(cos(45*%pi*180**-1))**-1
+
+//Applying the summation of vertical forces we get
+F_BC=F_DB*sin(45*%pi*180**-1)
+
+//Consider Equilibrium of joint B
+
+//Applying the summation of vertical forces we get
+F_CE=4*(sin(45*%pi*180**-1))**-1
+
+//Applying the summation of horizontal forces we get
+F_DC=F_CE*cos(45*%pi*180**-1)
+
+//Result
+printf("The Forces in Each members are as follows:F_AB = %.f kN",F_AB)
+printf("\n :F_AC = %.f kN",F_AC)
+printf("\n :F_DB %.2f",F_DB);printf(" KN(compression)")
+printf("\n :F_BC %.2f",F_BC);printf(" KN(Tension)")
+printf("\n :F_CE %.2f",F_CE);printf(" KN(Tension)")
+printf("\n :F_DC %.2f",F_DC);printf(" KN (compression)" )