Welded Beam Design Optimization
Introduction
The diagram illustrates a rigid member welded onto a beam. A load is applied to the end of the member.
The total cost of production is equal to the labor costs (a function of the weld dimensions) plus the cost of the weld and beam material.
The beam is to be optimized for minimum cost by varying the weld and member dimensions x1, x2, x3 and x4. The constraints include limits on the shear stress, bending stress, buckling load, and end deflection. The variables x1 and x2 are usually integer multiples of 0.0625 inch, but for this application they are assumed continuous.
Reference: Ragsdell, K and Phillips, D. Optimal Design of a Class of Welded Structures using Geometric Programming. J. Eng. Ind., 98(3):1021–1025, 1976.
Parameters
restart:
Young's modulus (psi)
E≔30⋅106:
Shearing modulus for the beam material (psi)
G≔12⋅106:
Overhang length of the member (inch)
L≔14:
Design stress of the weld (psi)
τ__max≔13600:
Design normal stress for the beam material (psi)
σ__max≔30000:
Maximum deflection (inch)
δ__max≔0.25:
Load (lb)
P≔6000:
Cost per unit volume of the weld material ($ inch-3)
C__1≔0.10471:
Cost per unit volume of the bar ($ inch-3)
C__2≔ 0.04811 :
Labor cost per unit weld volume ($ inch-3)
C__3≔1 :
Cost Function
Volume of weld material (inch3)
V__weld≔x__12⋅x__2:
Volume of bar (inch3)
V__bar≔x__3⋅x__4⋅L+x__2:
Total material cost to be minimized.
f≔x__1,x__2,x__3,x__4→C__1+C__3⋅V__weld+C__2⋅V__bar:
Constraints
The shear stress at the beam support location cannot exceed the maximum allowable for the material.
con1≔ τ__max − τx__1,x__2,x__3,x__4≥0:
The normal bending stress at the beam support location cannot exceed the maximum yield strength for the material.
con2≔ σ__max−σx__1,x__2,x__3,x__4 ≥0:
The member thickness is greater than the weld thickness.
con3≔ x__4−x__1≥0:
con4≔ C__1⋅x__12+C__2⋅x__3⋅x__4⋅L+x__2−5≤0:
The weld thickness must be larger than a defined minimum.
con5≔x__1−0.125≥0:
The deflection cannot exceed the maximum deflection.
con6≔δ__max−δx__1,x__2,x__3,x__4≥0:
The buckling load is greater than the applied load.
con7≔ Pcx__1,x__2,x__3,x__4−P≥0:
Size constraints
con8≔x__1≥0.1, x__4≤2.0,x__2≥0.1,x__3≤10:
Collect all the constraints
cons≔con1,con2,con3,con4,con5,con6,con7,con8:
Engineering Relationships
Weld stress
τ≔x__1,x__2,x__3,x__4→τ__d2+2⋅τ__d⋅τ__dd⋅x__22 R+τ__dd2:
Primary stress acting over the weld throat
τ__d≔P2⋅x__1⋅x__2:
Secondary torsional stress.
τ__dd≔M⋅RJ:
Moment of P about center of gravity of weld setup.
M≔P⋅L+x__22:
R≔x__224+x__1+x__322:
Polar moment of inertia of weld
J≔2x__1⋅x__2⋅2⋅x__2212+x__1+x__322:
Bar bending stress
σ≔x__1,x__2,x__3,x__4→6⋅P⋅Lx__4⋅x__32:
Bar Deflection: to calculate the deflection, assume the bar to be a cantilever of length L.
δ≔x__1,x__2,x__3,x__4→4⋅P⋅L3E⋅ x__4⋅x__32:
For narrow rectangular bars, the bar buckling load is approximated by (Timoshenko, S and Gere, J. Theory of Elastic Stability. New York: McGraw-Hill. 1961. p.257)
Pc≔x__1,x__2,x__3,x__4→4.013⋅E⋅x__32⋅x__4636L2⋅1−x__32⋅L⋅E4⋅G:
Optimization
bounds≔x__1=0..10,x__2=0..10 ,x__3=0..10,x__4=0..10:
Hence the minimum cost and optimized dimensions are
sol≔Optimization:-Minimizefx__1,x__2,x__3,x__4,cons,bounds
sol:=1.72485230854216631,x__1=0.205729639770726,x__2=3.47048866582864,x__3=9.03662391069483,x__4=0.205729639770726
Download Help Document