summaryrefslogtreecommitdiff
path: root/3772/CH17/EX17.4
diff options
context:
space:
mode:
Diffstat (limited to '3772/CH17/EX17.4')
-rw-r--r--3772/CH17/EX17.4/Ex17_4.sce36
1 files changed, 36 insertions, 0 deletions
diff --git a/3772/CH17/EX17.4/Ex17_4.sce b/3772/CH17/EX17.4/Ex17_4.sce
new file mode 100644
index 000000000..e94684465
--- /dev/null
+++ b/3772/CH17/EX17.4/Ex17_4.sce
@@ -0,0 +1,36 @@
+//Ex no.17.4,Page no.381
+clc;clear;close;
+
+//Initilization of Variables
+
+sigma_t=100 //MPa //tensile stress
+P=170 //KN //Load
+
+//Calculations
+
+//For equal stress in the welds A and B, the load shared by the fillet welds will be proportional to size of weld
+
+//t_a=0.7*s //Effective throat thickness of weld A in upper plate
+//s=size of weld
+
+//t_b=1.05*s //Effective throat thickness of weld B in lower plate
+
+//For weld A
+//P_1=l*t*sigma_t
+
+//After substituting values and simplifying above equation, we get,
+//P_1=84000*s //N (equation 1)
+
+//P_2=l*t_2*sigma_t
+
+//After substituting values and simplifying above equation, we get,
+//P_2=126000*s //N (equation 2)
+
+//After adding equation 1 and 2, we get,
+//P=210000*s (equation 3)
+
+//Now equating total forces of the fillets to load on the plates
+s=P*10**3*210000**-1 //cm
+
+//Result
+printf("size of end fillet is %.2f cm",s)