You are on page 1of 2

SM 406 Engineering Stress Analysis of a Structure:

The rigid structure ABD shown in the figure below is supported at B by a


35-mm-diameter tie rod 1 and at A by a 30-mm-diameter pin used in a
single shear connection. The tie rod is connected at B and C by 24-mm-
diameter pins used in double shear connections. Tie rod 1 has a yield
strength of 250 MPa, and each of the pins has an ultimate shear strength of
330 MPa. A concentrated load of P = 50 kN acts as shown at D.
Determine:
(a) the normal stress in rod 1.
(b) the shearing stress in the pins at A and B.
(c) the factor of safety with respect to yield strength for tie rod 1.
(d) the factor of safety with respect to ultimate strength for the pins at
A and B.
Script File:
clear; clf; imshow('P4_6.png'); clc;
d1=0.035; A1=pi/4*d1^2; dA=0.03; AA=pi/4*dA^2;
dbc=0.024; Abc=pi/4*dbc^2; Ys1=250e6; SSp=330e6; P=50e3;
h1=8; h2=5.3; h3=7.5; h4=3.4; ang=60;

syms ax ay F1
Fab=[ax ay 0]+F1*uv([-h2 -h1 0])+P*[cosd(ang) -sind(ang) 0];
Mab=cross([0 h1 0],F1*uv([-h2 -h1 0]))+...
cross([h3 h4 0],P*[cosd(ang) -sind(ang) 0]);

sol=solve(Fab(1),Fab(2),Mab(3),'st1=F1/A1','stA=sqrt(ax^2+ay^2)/AA',...
'stB=F1/(2*Abc)','st1=Ys1/fs1','stA=SSp/fsA','stB=SSp/fsB',...
'ax,ay,F1,st1,stA,stB,fs1,fsA,fsB'); results(sol,1)

fprintf('\nNormal stress in rod (1) = %1.2f MPa',st1/1e6)
fprintf('\nShearing stress in the pin at A = %1.2f MPa',stA/1e6)
fprintf('\nShearing stress in the pin at B = %1.2f MPa',stB/1e6)
fprintf('\nFactor of safety: yield strength - rod (1) = %1.3f',fs1)
fprintf('\nFactor of safety: ultimate strength - pin A = %1.3f',fsA)
fprintf('\nFactor of safety: ultimate strength - pin B = %1.3f\n',fsB)
Results:
F1 = 92740.5013
ax = 26219.9408
ay = 120614.3884
fs1 = 2.5936
fsA = 1.8898
fsB = 3.2195
st1 = 96392549.916
stA = 174619741.9745
stB = 102500758.3743
Normal stress in rod 1 = 96.39 MPa
Shearing stress in the pin at A = 174.62 MPa
Shearing stress in the pin at B = 102.50 MPa
Factor of safety: yield strength - rod 1 = 2.594
Factor of safety: ultimate strength - pin A = 1.890
Factor of safety: ultimate strength - pin B = 3.219

You might also like