100% found this document useful (1 vote)
289 views11 pages

Abaqus Tutorial 1

1. Specify geometric nonlinearity using *STEP, NLGEOM=YES. This allows for large deformations. 2. Define the time increments using *STATIC and parameters like initial, final time, minimum, and maximum increments. 3. Apply loads incrementally in a nonlinear static general step and solve for each increment. 4. Review deformed shapes and stresses from the incremental solution to evaluate nonlinear effects.

Uploaded by

Dg IRfan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
289 views11 pages

Abaqus Tutorial 1

1. Specify geometric nonlinearity using *STEP, NLGEOM=YES. This allows for large deformations. 2. Define the time increments using *STATIC and parameters like initial, final time, minimum, and maximum increments. 3. Apply loads incrementally in a nonlinear static general step and solve for each increment. 4. Review deformed shapes and stresses from the incremental solution to evaluate nonlinear effects.

Uploaded by

Dg IRfan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 11

Finite Element Analysis

Using ABAQUS

EGM 6352 (Spring 2017)


Instructor: Nam-Ho Kim (nkim@ufl.edu)
Web: http://www.mae.ufl.edu/nkim/egm6352

Methods of Analysis in ABAQUS


• Interactive mode
– Create analysis model and procedure using GUI
– Advantage: No need to remember commands
– Disadvantage: No automatic procedure for changing model or
parameters
• Python script
– All GUI user actions will be saved as Python script
– Advantage: User can repeat the same command procedure
– Disadvantage: Need to learn Python language
• Analysis input file
– At the end, ABAQUS generates analysis input file (text file)
– ABAQUS solver reads analysis input file
– It is possible to manually create analysis input file
2
Components in ABAQUS Model
• Creating nodes and elements (discretized geometry)
• Element section properties (area, moment of inertia, etc)
• Material data (linear/nonlinear, elastic/plastic,
isotropic/orthotropic, etc)
• Loads and boundary conditions (nodal force, pressure,
gravity, fixed displacement, joint, relation, etc)
• Analysis type (linear/nonlinear, static/dynamic, etc)
• Output requests

Example: Overhead Hoist

4
Input File: frame.inp
*HEADING
Two-dimensional overhead hoist frame **
SI units (kg, m, s, N) ** History data
1-axis horizontal, 2-axis vertical **
*PREPRINT, ECHO=YES, MODEL=YES, HISTORY=YES *STEP, PERTURBATION
** 10kN central load
** Model definition *STATIC
** *BOUNDARY
*NODE, NSET=NALL 101, ENCASTRE
101, 0., 0., 0. 103, 2
102, 1., 0., 0. *CLOAD
103, 2., 0., 0. 102, 2, -10.E3
104, 0.5, 0.866, 0. *NODE PRINT
105, 1.5, 0.866, 0. U,
*ELEMENT, TYPE=T2D2, ELSET=FRAME RF,
11, 101, 102 *EL PRINT
12, 102, 103 S,
13, 101, 104 **********************************
14, 102, 104 ** OUTPUT FOR ABAQUS QA PURPOSES
15, 102, 105 **********************************
16, 103, 105 *EL FILE
17, 104, 105 S,
*SOLID SECTION, ELSET=FRAME, MATERIAL=STEEL *NODE FILE
** diameter = 5mm --> area = 1.963E-5 m^2 U, RF
1.963E-5, *END STEP
*MATERIAL, NAME=STEEL
*ELASTIC
200.E9, 0.3
5

Format of Input File


• Model data section
– Information required to define the structure being analyzed
• History data section
– Type of simulation (static, dynamics, etc)
– The sequence of loading or events for which the response of the
structure is required
– Divided into a sequence of steps
– Output request
• Input file
– Composed of a number of option blocks (describing a part of the
model)
– Each option block begins with a keyword line (starting with *),
which is usually followed by one or more data lines.
6
Format of Input File cont.
• Keyword line
– *ELEMENT, TYPE = T2D2, ELSET = FRAME
• Element set FRAME is 2-dimensional truss element
– *NODE, NSET=PART1
• All nodes below belong to a set PART1
– *ELEMENT, TYPE = T2D2,
ELSET = FRAME
• Maximum 256 characters per line

• Data line - Keyword line usually followed by data lines


*NODE
101, 0., 0., 0.
102, 1., 0., 0.
103, 2., 0., 0.
104, 0.5, 0.866, 0.
105, 1.5, 0.866, 0.
7

Format of Input File cont.


• Model data
• Heading
– The first option in any Abaqus input file must be *HEADING
– Description of the problem
*HEADING
Two-dimensional overhead hoist frame
SI units (kg, m, s, N)
1-axis horizontal, 2-axis vertical

• Data file printing options


– Input file echo
*PREPRINT, ECHO=YES, MODEL=YES, HISTORY=YES

• Comments
**
** Model definition
**
8
Format of Input File cont.
• Element connectivity
– Keyword *ELEMENT specifies element type, element set
*ELEMENT, TYPE=T2D2, ELSET=FRAME
11, 101, 102
12, 102, 103
13, 101, 104
14, 102, 104
15, 102, 105
16, 103, 105
17, 104, 105

• Section properties
– Keyword *SOLID SECTION specifies area, I, etc
*SOLID SECTION, ELSET=FRAME, MATERIAL=STEEL
** diameter = 5mm --> area = 1.963E-5 m^2
1.963E-5,

Format of Input File cont.


• Material properties
– Keyword *MATERIAL followed by various suboptions
*MATERIAL, NAME=STEEL
*ELASTIC
200.E9, 0.3

• History data
– Starts with keyword *STEP, followed by the title of the step
*STEP, PERTURBATION
10kN central load

• Analysis procedure
– Use *STATIC immediately after *STEP

• Boundary conditions
– Keyword *BOUNDARY
– (UX, UY, UZ, UR1, UR2, URS) = (1, 2, 3, 4, 5, 6)
10
Format of Input File cont.
• Boundary conditions cont.
– Format: Node number, first dof, last dof, displ value
103, 2,2, 0.0
103, 2,2
103, 2
101, 1
101, 2

– Built in constraints
• ENCASTRE: Constraint on all displacements and rotations at a node
• PINNED: Constraint on all translational degrees of freedom
• XSYMM: Symmetry constraint about a plane of constant
• YSYMM: Symmetry constraint about a plane of constant
• ZSYMM: Symmetry constraint about a plane of constant
• XASYMM: Antisymmetry constraint about a plane of constant
• YASYMM: Antisymmetry constraint about a plane of constant
• ZASYMM: Antisymmetry constraint about a plane of constant

11

Format of Input File cont.


• Applied loads
– concentrated loads, pressure loads, distributed traction loads,
distributed edge loads and moment on shells, nonzero boundary
conditions, body loads, and temperature
*CLOAD
102, 2, -10.E3

• Output request
– neutral binary file (.odb), printed text file (.dat), restart file
(.res), binary result file (.fil)
*NODE PRINT
U,
RF,
*EL PRINT
S,

• End of step
*END STEP
12
Run ABAQUS
• Data check
abaqus job=frame datacheck interactive
– Show frame.dat file
– Check for **ERROR ot **WARNING
• Solving the problem
abaqus job=frame continue interactive
• Show frame.dat file

13

Postprocessing
• Graphical postprocessing
abaqus viewer
– open frame.odb
– Show labels using Options> Common> Labels
– Plot> Deformed shape
– Change deformation scale factor using Options> Common> Basic

14
NONLINEAR ANALYSIS
USING ABAQUS

15

Nonlinear Analysis Using ABAQUS


• Geometric nonlinear (St. Venant-Kirchhoff material)
*STEP, NLGEOM=YES, INC=150
– Large deformation on, maximum No. of increments = 150
• Time control
*STATIC
0.1, 1.0, 0.0001, 1.5
– initial time increment, final time, min increment, max increment

16
Tutorial: Bending of Cantilevered Beam
• Create a part
– Parts Æ Name: Beam Æ 2D Planar Æ Deformable Æ Shell Æ
Approximate size = 20
– Create lines: Rectangle Æ (0,0) Æ (10, 0.1478) Æ Done
– Materials Æ Name:Material-1 Æ Mechanical Æ Elasticity Æ Elastic
Æ Young’s modulus = 1E8 Æ Poisson’s ratio = 0 Æ OK
– Sections Æ Name: Section-1 Æ Solid Æ Homogeneous Æ Continue
Æ Material-1 Æ Plane stress/strain thickness = 0.1 Æ OK
– Parts Æ Beam Æ Section Assignments Æ Select Beam Æ Done Æ
Section: Section-1 Æ OK

17

Tutorial: Bending of Cantilevered Beam


• Mesh control (Parts Æ Beam – Mesh (Empty)
– Menu Mesh Æ Element Type Æ Select Beam Æ Done
– Family: Plane Strain, Check Incompatible modes Æ OK
– Menu Seed Æ Edge Æ Select top and bottom lines Æ Done Æ
Method: By number Æ Number of elements = 40 Æ OK
– Menu Mesh Æ Part Æ Yes
• Assembly and Steps
– Assembly Æ Instance Æ Beam Æ OK
– Steps Æ Name: Linear Æ Procedure type: Linear perturbation Æ
Continue Æ OK
– Constraints Æ Cancel Æ RP Æ (0, 0.0739)
– Constraint Æ Coupling Æ Continue Æ Select RP-1 Æ Done Æ
Surface Æ Select left line of the beam Æ Done Æ Coupling type:
continuous distributing Æ OK
18
Tutorial: Bending of Cantilevered Beam
• Load and BC
– BCs Æ Step: Initial Æ Displacement/Rotation Æ Select tie right
edge of the Beam Æ Done Æ Click U1 & U2 Æ OK
– Loads Æ Step: Step-1 Æ Moment Æ Continue Æ Select RP-1 Æ
Done Æ CM3: -338.478 Æ OK
• Create job and solve the model
– Jobs Æ Continue Æ OK
– Right click on Job-1 Æ Submit Æ OK
• Postprocessing
– Right click on Job-1 Æ Results
– Common options Æ Deformation scale factor Æ Uniform Æ Value: 1
Æ OK
– Plot deformed shape
19

Tutorial: Bending of Cantilevered Beam


• Deformed shape from linear perturbation analysis
(Scale factor = 1.0)

20
Tutorial: Bending of Cantilevered Beam
• Nonlinear simulation
– Go back to Model
– Delete Step-1 (linear perturbation)
• Create a nonlinear step and submit the job
– Steps Æ Procedure type: General Æ Static, General Æ Continue
– Nlgeom: on
– Incrementation: Max No of increments: 200 Æ Initial: 0.05 Æ
Maximum: 1.0 Æ OK
– Loads Æ Step: Step-1 Æ Moment Æ Continue Æ Select RP-1 Æ
Done Æ CM3: -338.478 Æ OK
– Submit job Æ OK

21

Tutorial: Bending of Cantilevered Beam


• Deformed shape from nonlinear static analysis
(Scale factor = 1.0)

22

You might also like