You are on page 1of 10

ME542 Deformation Analysis & Modeling

Homework #2
(due Tuesday 6/16/2015, 5:00 pm)
Prepared by Alejandro Delgado
1. Use the axi_tension.inp to go through all the analyses presented above
Type of load: uniaxial
Type of body: cylinder
Dimensions: it was taken a surface of 1X1 mm
Number of elements: 16
Material properties: Elastic & plastic
Strains:
Elastic
1
1
1
Plastic
1 p=0.0 @ 200 MPa
2 p=0.01@ 300 MPa
3 p=0.03@ 400 MPa
Type of element: Continuum, axisymetric, 4 noded element
CAX4
Type of material: Aluminium
Properties:
E= 70,000 MPa
n=0.33
Boundaries: Left and Bottom

1. Normal Stress:

As the coordinate axes are defined as:


1=x
2=y
Only there is an axial load in the axe 2
S11 = 0

S22 =?

S= P/At
S it is not known
However we know the plastic strains at different stages

There is not thermal expansion


The plastic strains depend on the load level according to the following range:

Here it is shown some verification calculations:

In this case the 22 (abaqus) does not match with handmade calculation
The value of 22 plastic is estimated (guessed)
On the other hand, the equivalent plastic strain in axe 2 is:

Finally we can see that the Von Mises Stress is:

CONCLUSION: As the Yield Stress is around 200 MPa, the material is indeed being deformed
plastically
THE
2. Then, try the plane strain case (element type CPE4), instead of

axisymmetriccase. Result is in the stress-strain figure. Note that for plane


strain, cross section area is no longer w2. It is w times unit depth.

In this case the section has been changed from circular to squared, On the other hand the
element type has also been changed to CPEA4 from CAX4. It was made the change in the
axi_tension.inp however the code does not run, it caused several errors. I understand that I
should do other changes in the algorithm.
*HEADING
Test problem, to make sure input=output
** Define x and y coords. of nodal points
*NODE
1, 0.0, 0.0
2, 0.25, 0.0
3, 0.5, 0.0
4, 0.75, 0.0
5, 1.0, 0.0
6, 0.0, 0.25
7, 0.25, 0.25
8, 0.5, 0.25
9, 0.75, 0.25
10, 1.0, 0.25
11, 0.0, 0.5
12, 0.25, 0.5
13, 0.5, 0.5
14, 0.75, 0.5

15, 1.0, 0.5


16, 0.0, 0.75
17, 0.25, 0.75
18, 0.5, 0.75
19, 0.75, 0.75
20, 1.0, 0.75
21, 0.0, 1.0
22, 0.25, 1.0
23, 0.5, 1.0
24, 0.75, 1.0
25, 1.0, 1.0
** Define node sets
*NSET, NSET=LEFT, GENERATE
1, 21, 5
*NSET, NSET=BOTTOM, GENERATE
1, 5, 1
*NSET, NSET=TOP, GENERATE
21, 25, 1
*NSET, NSET=TOPNTIP, GENERATE
21, 24, 1
*NSET, NSET=RIGHT, GENERATE
5, 25, 5
*NSET, NSET=RIGHNTIP, GENERATE
5, 20, 5
*NSET, NSET=TIP
25
*NSET, NSET=ALL, GENERATE
1, 25, 1

**
**
** Define the first element
*ELEMENT, TYPE=CPEA4
1, 1, 2, 7, 6
** Generate all the other elements
*ELGEN, ELSET=whole
1, 4, 1, 1, 4, 5, 4
** Define element sets
*ELSET, ELSET=lower, generate
1,12,1
*ELSET, ELSET=upper, generate
13,16,1
**
** "Tie" the 2-direction displacements of the top nodes
** to that of the "tip" node, for convenience.
*EQUATION
2
TOPNTIP, 2, 1.0, 25, 2, -1.0
**EQUATION
**2
**RIGHNTIP, 1, 1.0, 25, 1, -1.0
**
*SOLID SECTION, ELSET=upper, MATERIAL=test_Al
*SOLID SECTION, ELSET=lower, MATERIAL=test_Al
**
*MATERIAL, NAME=test_Al
** Young's Modulus unit: MPa

*ELASTIC
70000.0, 0.33
** Stress unit: MPa
*PLASTIC
200.0, 0.0
300.0, 0.01
400.0, 0.03
**
*MATERIAL, NAME=test_SiC
*ELASTIC
281000.0, 0.17
**
** Define boundary conditions.
*BOUNDARY
LEFT, 1
BOTTOM, 2
**
*RESTART, WRITE, FREQ=500
**
** Start loading step.
*STEP, AMPLITUDE=RAMP, INC=100, NLGEOM
*STATIC, direct
0.01, 1.0
**
** Modify the boundary conditions to include prescribed displacement.
*BOUNDARY, OP=MOD
TIP, 2, 2, 0.05
**

** Assign potentially useful output information for the .odb file.


*OUTPUT,FIELD,variables=preselect
*OUTPUT,HISTORY,variables=preselect
*NODE OUTPUT,NSET=tip
U,RF
**
** Print some potentially useful outut information for the .dat file.
*NODE PRINT, NSET=TIP, FREQ=1
U, RF2
*EL PRINT, ELSET=WHOLE, POSITION=CENTROID, FREQ=1111
S11, S22, S33, E11, E22, E33, MISES
*END STEP
**

You might also like