Skip to content

Subloading1D

The Modified Extended Subloading Surface (Hashiguchi) Model

The subloading surface framework provides a very versatile approach to model cyclic behaviour. It is highly recommended to try it out.

References

  1. 10.1007/978-3-030-93138-4
  2. 10.1007/s11831-023-10022-1
  3. 10.1007/s11831-022-09880-y

Prof. Koichi Hashiguchi has published a large amount of papers on this topic. To find more references, please refer to the monograph and the references therein.

Alternatively, refer to the corresponding section in Constitutive Modelling Cookbook for implementation details.

Theory

Subloading Surface

The subloading surface is defined as

fs=|η|zσy

where η=σayα+(z1)σyd is the shifted stress, shifted from the centre defined by ayα+(1z)σyd. The scalar 0z1 is the normal yield ratio that provides a smooth transition from the interior to the normal yield surface. The scalar σy is the yield stress, that is affected by isotropic hardening.

Isotropic Hardening

The isotropic hardening combines linear hardening and exponential saturation.

σy=σi+kisoq+σisos(1emisosq)

where σi is the initial yield stress, kiso is the linear hardening modulus, σisos is the saturation stress and misos is the hardening rate.

The history variable q is the accumulated plastic strain, conventionally, it is

q˙=γ

where γ is the plasticity multiplier.

Kinematic Hardening

A modified Armstrong--Frederick rule is adopted for the normalised back stress α.

α˙=bγ(nα)

with

ay=ai+kkinq+akins(1emkinsq)

where b is hardening rate. Compared to the conventional AF rule, the saturation bound is not a constant in this model. Instead, it is associated to plasticity. The backbone ay mimics σy. The parameters ai, kkin, akins and mkins share similar implications compared to their counterparts.

Evolution of z

The following rule is used. Noting that the original formulation uses a cotangent function. Here, the logarithmic function is used instead. Also, the original formulation sets a minimum value for z (R in the references). We do not adopt such a limit.

z˙=uln(z)γ.

In which, u is a constant that controls the rate of transition.

Evolution of d

The evolution of d resembles that of α.

d˙=ceγ(zend)

in which ce and ze<1 are two constants.

Syntax

Text Only
material Subloading1D (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (11) (12) (13) (14) [15]
# (1) int, unique material tag
# (2) double, elastic modulus
# (3) double, initial isotropic stress, \sigma^i
# (4) double, linear isotropic hardening modulus, k_{iso}
# (5) double, isotropic saturation stress, \sigma^s
# (6) double, isotropic saturation rate, m^s_{iso}
# (7) double, initial kinematic stress, a^i
# (8) double, linear kinematic hardening modulus, k_{kin}
# (9) double, kinematic saturation stress, a^s
# (10) double, kinematic saturation rate, m^s_{kin}
# (11) double, yield ratio evolution rate, u
# (12) double, kinematic hardening rate, b
# (13) double, elastic core evolution rate, c_e
# (14) double, limit elastic core ratio, z_e
# [15] double, density, default: 0.0

History Layout

location parameter
initial_history(0) iteration counter
initial_history(1) accumulated plastic strain q
initial_history(2) normal yield ratio z
initial_history(3) normalised back stress α
initial_history(4) normalised elastic core d

Example

See this example.