CustomStressDegradation

Stress History Based Degradation With Custom Rules

This model implements the universal damage model assuming the degradation factor depends on the stress history.

Syntax

material CustomStressDegradation (1) (2) (3) [4]
# (1) int, unique material tag
# (2) int, host intact material tag
# (3) int, tension degradation expression tag
# [4] int, compression degradation expression tag, default: (3)

Remarks

It is possible to assign different degradation evolution rules for tension and compression.

The degradation expression shall take one scalar input and return a vector of two scalars, of which the first is the degradation factor while the second is the derivative of the degradation factor with respect to the input.

The degradations for positive/negative stresses are defined separately.

Dpos=Dpos(σˉmax),Dneg=Dneg(σˉmin).D_{pos}=D_{pos}(\bar{\sigma}_{max}),\quad D_{neg}=D_{neg}(\bar{\sigma}_{min}).

In which σˉmax\bar{\sigma}_{max} is the maximum stress (positive) of the whole loading history, and σˉmin\bar{\sigma}_{min} is the minimum stress (negative) of the whole loading history.

Example

To use this model, expressions of degradation evolution rules must be defined first. Assuming the degradation is an exponential function, and will be activated when the effective stress is larger than 20,

D=exp((σˉ20)/20),D=\exp(-(\bar{\sigma}-20)/20),

the corresponding derivative is then

dDdσˉ=120exp((σˉ20)/20).\dfrac{\mathrm{d}D}{\mathrm{d}\bar{\sigma}}=-\dfrac{1}{20}\exp(-(\bar{\sigma}-20)/20).

One can then define the expression in a plain text file as follows.

To use it, one shall use the SimpleVector expression.

Here we use xx as the input (σˉ\bar{\sigma}) and y[0]y[0] as the degradation (DD), y[1]y[1] as the derivative (dDdσˉ\dfrac{\mathrm{d}D}{\mathrm{d}\bar{\sigma}}).

Same Degradation for Tension and Compression

We use an elastic host material for demonstration.

example one

Different Degradation for Tension and Compression

We can define a different rule for compression.

example two

Last updated