Structural Application Constitutive Laws

From KratosWiki
(Difference between revisions)
Jump to: navigation, search
(List of Constitutive Law)
(List of Constitutive Law)
Line 249: Line 249:
 
| Total_Lagrangian   
 
| Total_Lagrangian   
 
|-style="background:#F1FAFF;
 
|-style="background:#F1FAFF;
 +
 +
| rowspan="4" | Hyperelastic2d()
 +
| [[Shear Modulus]]
 +
| MU
 +
| Membrane Element
 +
|-style="background:#F1FAFF;"
 +
| [[Bulk Modulus]]
 +
| BULK_MODULUS
 +
| Membrane Element
 +
|-style="background:#F1FAFF;"
 +
| [[Retraction Time]]
 +
| RETRACTION_TIME
 +
| Membrane Element
 +
|-style="background:#F1FAFF;"
 +
| [[Alpha Angle]]
 +
| ALPHA
 +
| Membrane Element
 +
|-style="background:#F1FAFF;"
 +
|-style="background:#F1FAFF;"
 +
 +
| rowspan="2" | Hyperelastic3d()
 +
| [[Shear Modulus]]
 +
| MU
 +
| Total_Lagrangian
 +
|-style="background:#F1FAFF;"
 +
| [[Bulk Modulus]]
 +
| BULK_MODULUS
 +
| Total_Lagrangian
 +
|-style="background:#F1FAFF;"
 +
|-style="background:#F1FAFF;"
 
|  
 
|  
 
|  
 
|  
Line 254: Line 284:
 
|  
 
|  
 
|}
 
|}
 
  
 
== List of flux  ==
 
== List of flux  ==

Revision as of 14:27, 27 January 2011

List of constitutive laws in Structural Application

The constitutive models and constitutive laws are mathematical formulas based on thermodynamic laws aimed at predicting the behavior or response from one or more materials. The computation internal variables and mapping of tensor spaces are typical operations performed on them.


In general, a constitutive law is defined using various parameters that define the evolution of internal variables used in the model. The most common are:

A yield function that lets us know the domain of elastic material. A constitutive model may have one or more combinations of sueprficies fluence, it depends both know the material. An example of the same mohr is Coulomb's surface, which is expressed in six functions as defined inteseccion the yield strength of material.

A function of softening or hardening . Functions that define the post-peak response of the material. They can be linear In general, a constitutive law is defined using various parameters that define the evolution of internal variables used in the model. The most common are:

The parameters to define a yield surface are: a) the yield function b) flow rate: Associate or Associate c) Status: Plane Stress, Plane Strain, Full TrID.

Shown below a Python script which creates the object yield function and softening function.

Fluency_1   = EnergyYieldFunction (myState.Plane_Stress).
Fluency_2   = VonMissesYieldFunction (myState.Plane_Stress, myPotencialPlastic.Associated).
Fluency_3   = DruckerPragerYieldFunction (myState.Plane_Stress).
fluency_4   = ModifiedMorhCoulombYieldFunction (myState.Plane_Strain, myPotencialPlastic.Not_Associated).
fluency_5   = RankineYieldFunction (myState.Plane_Strain).
print fluency_1.
# Function to use Softening.
behavior_1 = ExponentialSoftening ().
behavior_2 = LinearSoftening ().
print behavior_1


Among the most common is Hook's law or theory of elasticity, Theory of plasticity and damage models. Combinations of them can be creating, doing more complex formulation.

Isotropic: Models of elasticity in 2 dimensions (Plane Stress) and three dimensions. Being known as Isotropic2D and Isotropic3D. Only the parameters required are Young's modulus and Poisson ratio.

Simple Damage Model: Models of Damage in 2 dimensions (Plane Stress) and three dimensions. They are known as Isotropic_Damage and Isotropic_Damage_3D. The properties of the materials it need are:

  • Young Modulus,
  • Poisson Ratio,
  • Fracture Energy.
  • Fluency Criteria (The Energy Yield Function),
  • Softening Behavior (Linear or Exponential).


Simple Damage Model: Models of Damage in 2 dimensions (Plane Stress) and three dimensions. They are known as Isotropic_Damage and Isotropic_Damage_3D. The properties of the materials it need are:

  • Young Modulus,
  • Poisson Ratio,
  • Fracture Energy.
  • Fluency Criteria (The Energy Yield Function),
  • Softening Behavior (Linear or Exponential).


Plasticty: Models of plasticity in 2 dimensions (Plane Stress and Plane Strain ) and three dimensions. They are known as Plasticity_2D and Plasticity_3D. The properties of the materials it need are:

  • Young Modulus,
  • Poisson Ratio,
  • Yield Stress.
  • Plastic Modulus.
  • Fluency Criteria (The Energy Yield Function),
  • Softening Behavior (Linear or Exponential).

Summary

  • Isotropic2D()
  • Isotropic3D()
  • Isotropic_Damage()
  • Isotropic_Damage3D()
  • Plasticity_2D()
  • Plasticity_3D()

List of Constitutive Law

Constitutive Law Properties Properties Variables Element Type
Isotropic2d() Young Modulus YOUNG_MODULUS Total_Lagrangian and Linear Element
Poisson Ratio POISSON_RATIO Total_Lagrangian and Linear Element
Isotropic3d() Young Modulus YOUNG_MODULUS Total_Lagrangian and Linear Element
Poisson Ratio POISSON_RATIO Total_Lagrangian and Linear Element
Isotropic_Damage() Young Modulus YOUNG_MODULUS Total_Lagrangian
Poisson Ratio POISSON_RATIO Total_Lagrangian
Fracture Energy FRACTURE_ENERGY Total_Lagrangian
Traction_Strength FT Total_Lagrangian
Compresion_Strength FC Total_Lagrangian
Fluency Criteria (Only Yield Energy Criterium) N/A Total_Lagrangian
Softening Behavior (Only Exponencial Softening) N/A Total_Lagrangian
Isotropic_Damage3D() Young Modulus YOUNG_MODULUS Total_Lagrangian
Poisson Ratio POISSON_RATIO Total_Lagrangian
Fracture Energy FRACTURE_ENERGY Total_Lagrangian
Traction_Strength FT Total_Lagrangian
Compresion_Strength FC Total_Lagrangian
Fluency Criteria (Only Yield Energy Criterium) N/A Total_Lagrangian
Softening Behavior (Only Exponencial Softening) N/A Total_Lagrangian
Platicity_2d() (Von Misses and Tresca) Young Modulus YOUNG_MODULUS Total_Lagrangian
Poisson Ratio POISSON_RATIO Total_Lagrangian
Yield Stress YIELD_STRESS Total_Lagrangian
Isotropic Hardening Modulus ISOTROPIC_HARDENING_MODULUS Total_Lagrangian
Kinematic Hardening Modulus KINEMATIC_HARDENING_MODULUS Total_Lagrangian
Fluency Criteria (Only Yield Energy Criterium) N/A Total_Lagrangian
Softening Behavior (Only Exponencial Softening) N/A Total_Lagrangian
Platicity_2d() (Morh Coulomb Model) Young Modulus YOUNG_MODULUS Total_Lagrangian
Poisson Ratio POISSON_RATIO Total_Lagrangian
Fracture Energy FRACTURE_ENERGY Total_Lagrangian
Crushing Energy CRUSHING_ENERGY Total_Lagrangian
Friction Internal Angle MAX_FRICTION_INTERNAL_ANGLE Total_Lagrangian
Friction Internal Angle MAX_DILATANCY_ANGLE Total_Lagrangian
Traction_Strength FT Total_Lagrangian
Compresion_Strength FC Total_Lagrangian
Fluency Criteria (Only Yield Energy Criterium) N/A Total_Lagrangian
Softening Behavior (Only Exponencial Softening) N/A Total_Lagrangian
Hyperelastic2d() Shear Modulus MU Membrane Element
Bulk Modulus BULK_MODULUS Membrane Element
Retraction Time RETRACTION_TIME Membrane Element
Alpha Angle ALPHA Membrane Element
Hyperelastic3d() Shear Modulus MU Total_Lagrangian
Bulk Modulus BULK_MODULUS Total_Lagrangian

List of flux

Fluency Flux State
Von Misses Asociated Plane Stress, Plane Strain , TriD
Energy Asociated Plane Stress, Plane Strain , TriD
Tresca Asociated Plane Stress, Plane Strain , TriD
Morh-Coulomb Asociated and NonAsociated Plane Stress, Plane Strain , TriD
Rankine Asociated Plane Stress, Plane Strain , TriD
Drucker Prager Asociated Plane Stress, Plane Strain , TriD
Personal tools
Categories