summaryrefslogtreecommitdiff
path: root/3772/CH10/EX10.7/Ex10_7.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.7/Ex10_7.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.7/Ex10_7.sce')
-rw-r--r--3772/CH10/EX10.7/Ex10_7.sce53
1 files changed, 53 insertions, 0 deletions
diff --git a/3772/CH10/EX10.7/Ex10_7.sce b/3772/CH10/EX10.7/Ex10_7.sce
new file mode 100644
index 000000000..7c909293b
--- /dev/null
+++ b/3772/CH10/EX10.7/Ex10_7.sce
@@ -0,0 +1,53 @@
+// Problem no 10.7,Page No.261
+clc;
+clear;
+close;
+
+
+//Calculations
+
+theta=atan(1*2**-1)*(180*%pi**-1) //Radian
+
+//Taking moment about A
+R_EH=10*8*4**-1
+
+//Horizontal component of reaction at A
+R_AH=20 //KN
+
+//Applying the summation of horizontal forces we get
+F_AB=20*cos(theta*%pi*180**-1)**-1
+
+//Applying the summation of vertical forces we get
+R_AV=10*5**0.5*sin(theta*%pi*180**-1)
+
+//Vertical Reaction at E
+R_EV=0
+
+//Joint C
+
+//Applying the summation of vertical forces we get
+F_DC=10*sin(theta*%pi*180**-1)**-1
+
+//Applying the summation of horizontal forces we get
+F_CB=F_DC*cos(theta*%pi*180**-1)
+
+//Joint D
+
+//Applying the summation of vertical forces we get
+F_DB=F_DC*sin(theta*%pi*180**-1)
+
+//Applying the summation of horizontal forces we get
+F_DE=F_DC*cos(theta*%pi*180**-1)
+
+//Joint E
+
+//Applying the summation of vertical forces we get
+F_EB=R_EV*sin(theta*%pi*180**-1)
+
+//Result
+printf("Forces in Each members are as follows:F_AB %.2f",F_AB);printf(" KN(Tensile)")
+printf("\n :F_DC %.2f",F_DC);printf(" KN(compression)")
+printf("\n :F_CB %.2f",F_CB);printf(" KN(Tensile)")
+printf("\n :F_DB %.2f",F_DB);printf(" KN(Tensile)")
+printf("\n :F_DE %.2f",F_DE);printf(" KN(compression)")
+printf("\n :F_EB %.2f",F_EB);printf(" KN")