summaryrefslogtreecommitdiff
path: root/3772/CH17/EX17.6
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3772/CH17/EX17.6
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/CH17/EX17.6')
-rw-r--r--3772/CH17/EX17.6/Ex17_6.sce28
1 files changed, 28 insertions, 0 deletions
diff --git a/3772/CH17/EX17.6/Ex17_6.sce b/3772/CH17/EX17.6/Ex17_6.sce
new file mode 100644
index 000000000..2b90f9088
--- /dev/null
+++ b/3772/CH17/EX17.6/Ex17_6.sce
@@ -0,0 +1,28 @@
+//Ex no.17.6,Page no.382
+clc;clear;close;
+
+//Initilization of Variables
+
+P=200 //KN //Load carried by the angle
+S=0.6 //mm //size of weld
+b=4.46 //cm //Distance of centre of gravity of the angle from the top shorter leg
+a=10.54 //cm //Distance of centre of gravity of the angle from the top edge of the angle
+sigma_s=102.5 //MPa //shear stress
+//l_1=Length of the top weld
+//l_2=length of the bottom weld
+//L=l_1+l_2 //cm //total length weld
+
+//Using the relation
+//P=L*0.7*S*sigma_s
+
+//After substituting values and simplifying we get
+L=(P*10**3)*(0.7*S*sigma_s*10**-4*10**6)**-1 //cm (equation 1)
+
+//Using the relation
+l_1=(L*b)*(a+b)**-1 //cm
+
+//substituting this value in equation 1 we have,
+l_2=L-l_1 //cm
+
+//Result
+printf("Distance of centre of gravity of the angle from the top edge of the angle = %.2f cm",l_2)