Difference between revisions of "Damage Initiation Laws"

From OSUPDOCS
Jump to navigation Jump to search
Line 1: Line 1:
== Introduction ==
== Introduction ==


Damage initiation laws are used in [[Material_Models#Softening_Materials|softening materials]] to initiate the damage process. They consist of a failure envelope in stress space. Once the current stresses reaches the envelop, the damage process begins. The normal to the failure envelop defines the normal to the plane of damage that is initiated. After initiation, damage propagates, but the damage law is no longer used.
Damage initiation laws are used in [[Material_Models#Softening_Materials|softening materials]] to initiate the damage process. They consist of a failure envelope in stress space. Once the current stresses reach the envelop, the damage process begins. The normal to the failure envelop defines the normal to the plane of damage that is initiated. After initiation, damage propagates, but the damage law is no longer used.


== Define a Damage Initiation Laws ==
== Define a Damage Initiation Laws ==


You create traction law materials using a [[Material Command Block|<tt>Material</tt> command block]]. Within that block all traction properties are set using property commands. Refer to each traction law type to learn about its possible properties.
You create a damage initiation law using an <tt>Initiation</tt> material property within a [[Material Command Block|<tt>Material</tt> command block]]. You pick the law by name or ID. After picking the law, all its properties are set using property commands. Refer to each damage initiation law type to learn about its failure envelope and about its possible properties.


== Traction Law Materials ==
== Damage Initiation Law Materials ==


This table lists the available traction law materials. Click each one for more details and information on their properties.
This table lists the available damage initiation law. Click each one for more details and information on their properties.


{| class="wikitable"
{| class="wikitable"
Line 15: Line 15:
! Name !! ID !! Description
! Name !! ID !! Description
|-
|-
| [[Triangular Traction Law|TriangularTraction]] || 12 || A triangular traction law
| [[Maximum Principle Stress Initiation|MaxPrinciple]] || 1 || Damage initiates with principle stress exceeds tensile strength or when maximum shear stress exceeds the shear strength.
|-
| [[Linear Traction Law|LinearTraction]] || 13 || A linear elastic traction law (no failure)
|-
| [[Cubic Traction Law|CubicTraction]] || 14 || A cubic traction law
|-
| [[Trilinear Traction Law|TrilinearTraction]] || 20 || A trilinear traction law
|-
| [[Coupled Triangular Traction Law|CoupledTraction]] || 23 || A coupled triangular traction law
|-
| [[Pressure Traction Law|PressureTraction]] || 26 || A constant normal stress traction law (no failure)
|}
|}


It is relatively easy to write code for new traction laws, if needed.
It is relatively easy to write code for new damage initiation laws, if needed.

Revision as of 14:42, 13 January 2016

Introduction

Damage initiation laws are used in softening materials to initiate the damage process. They consist of a failure envelope in stress space. Once the current stresses reach the envelop, the damage process begins. The normal to the failure envelop defines the normal to the plane of damage that is initiated. After initiation, damage propagates, but the damage law is no longer used.

Define a Damage Initiation Laws

You create a damage initiation law using an Initiation material property within a Material command block. You pick the law by name or ID. After picking the law, all its properties are set using property commands. Refer to each damage initiation law type to learn about its failure envelope and about its possible properties.

Damage Initiation Law Materials

This table lists the available damage initiation law. Click each one for more details and information on their properties.

Name ID Description
MaxPrinciple 1 Damage initiates with principle stress exceeds tensile strength or when maximum shear stress exceeds the shear strength.

It is relatively easy to write code for new damage initiation laws, if needed.