4.37.4. Modular Failure
The “modular failure” model extends the multiplicative framework set out by the Johnson-Cook and Wilkins models to create a more customizable failure model. This model includes five individual terms that capture effects due to pressure, Lode angle, stress triaxiality, strain rate, and temperature. The “modular failure” model is implemented as,
where \(p\) is the mean hydrostatic stress, \(\theta\) is the Lode angle, \(\eta\) is the stress triaxiality, and \(T\) is temperature. Mean hydrostatic stress \(p\) is defined as,
Lode angle \(\theta\) is defined in terms of deviatoric stress invariants tensor \(\{J_2, J_3\}\) as,
Stress triaxiality \(\eta\) is defined as the ratio of mean hydrostatic stress to von-Mises stress,
Each of the multiplicative terms \(w_i\) can be independently specified; user-defined functions can be provided, and several presets are provided. Implemented possibilities are,
where superscripts \(\{\text{jc}, \text{w}, \text{ud}\}\) represent Johnson-Cook model terms, Wilkins model terms, or user-defined functions, respectively. Refer to Section 4.37.2 and Section 4.37.3 for these function definitions. Leaving a function unspecified defines the function as \(1\), indicating independence with respect to that variable. The failure process initiates once the integral term reaches the critical failure parameter, such that \(d = 1\).
4.37.4.1. User Guide
#
# MODULAR_FAILURE Failure model definitions
#
PRESSURE MULTIPLIER = PRESSURE_INDEPENDENT | WILKINS
| USER_DEFINED (PRESSURE_INDEPENDENT)
LODE ANGLE MULTIPLIER = LODE_ANGLE_INDEPENDENT |
WILKINS (LODE_ANGLE_INDEPENDENT)
TRIAXIALITY MULTIPLIER = TRIAXIALITY_INDEPENDENT | JOHNSON_COOK
| USER_DEFINED (TRIAXIALITY_INDEPENDENT)
RATE FAIL MULTIPLIER = RATE_INDEPENDENT | JOHNSON_COOK
| USER_DEFINED (RATE_INDEPENDENT)
TEMPERATURE FAIL MULTIPLIER = TEMPERATURE_INDEPENDENT | JOHNSON_COOK
| USER_DEFINED (TEMPERATURE_INDEPENDENT)
#
# Individual multiplier definitions
#
PRESSURE MULTIPLIER = WILKINS
WILKINS ALPHA = <real>
WILKINS PRESSURE = <real>
#
PRESSURE MULTIPLIER = USER_DEFINED
PRESSURE MULTIPLIER FUNCTION = <string> pressure_multiplier_fun_name
#
LODE ANGLE MULTIPLIER = WILKINS
WILKINS BETA = <real>
#
TRIAXIALITY MULTIPLIER = JOHNSON_COOK
JOHNSON COOK D1 = <real>
JOHNSON COOK D2 = <real>
JOHNSON COOK D3 = <real>
#
TRIAXIALITY MULTIPLIER = USER_DEFINED
TRIAXIALITY MULTIPLIER FUNCTION = <string> triaxiality_multiplier_fun_name
#
RATE FAIL MULTIPLIER = JOHNSON_COOK
JOHNSON COOK D4 = <real>
# REFERENCE RATE should only be added if not previously defined
REFERENCE RATE = <real>
#
RATE FAIL MULTIPLIER = USER_DEFINED
RATE FAIL MULTIPLIER FUNCTION = <string> rate_fail_multiplier_fun_name
#
TEMPERATURE FAIL MULTIPLIER = JOHNSON_COOK
JOHNSON COOK D5 = <real>
# JC Temperatures should only be defined if not previously given
REFERENCE TEMPERATURE = <real>
MELTING TEMPERATURE = <real>
#
TEMPERATURE FAIL MULTIPLIER = USER_DEFINED
TEMPERATURE FAIL MULTIPLIER FUNCTION = <string> temp_multiplier_fun_name