Skip to content

PolyJ2

Polynomial Hardening J2 Model

The PolyJ2 defines a J2 material with isotropic hardening. The isotropic hardening is controlled by a polynomial. The kinematic hardening is disabled.

Syntax

Text Only
1
2
3
4
5
6
material PolyJ2 (1) (2) (3) (4) [(5)...]
# (1) int, unique material tag
# (2) double, elastic modulus
# (3) double, poisson's ratio
# (4) double, density
# [(5)...] double, parameters in polynomial

Example

The isotropic hardening function is defined to be a polynomial function of equivalent plastic strain.

σy(ε¯p)=a0+a1ε¯p+a2ε¯p2++anε¯pn.

Clearly, a0 is the initial yielding stress.

To define for example the following hardening

σy(ε¯p)=100+4000ε¯p+80000ε¯p3

with E=200000 and ν=0.3, the following command can be used.

Text Only
material PolyJ2 1 2E5 .3 .0 1E2 4E3 0. 8E4