summaryrefslogtreecommitdiff
path: root/3772/CH10/EX10.1/Ex10_1.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3772/CH10/EX10.1/Ex10_1.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 '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)" )