jaxmat.materials.hyperelasticity module#
- class Hyperelasticity[source]#
Bases:
FiniteStrainBehaviorHyperelasticity(potential: jaxmat.materials.hyperelasticity.HyperelasticPotential)
-
potential:
HyperelasticPotential#
- internal: eqx.AbstractVar[AbstractState] = None#
Internal variables state.
- constitutive_update(F, state, dt)[source]#
Perform the constitutive update for a given deformation gradient increment for a finite-strain behavior.
This abstract method defines the interface for advancing the material state over a time increment based on the provided strain tensor. Implementations should return the updated stress tensor and internal variables, along with any auxiliary information required for consistent tangent computation or subsequent analysis.
- Parameters:
F (array_like) – Deformation gradient tensor at the current integration point.
state (PyTree) – PyTree containing the current state variables (stress, strain and internal) of the material.
dt (float) – Time increment over which the update is performed.
- Returns:
PK1 (array_like) – Updated first Piola-Kirchhoff stress tensor.
new_state (PyTree) – Updated state variables after the constitutive update.
Notes
This method should be implemented by subclasses defining specific constitutive behaviors (elastic, plastic, viscoplastic, etc.).
-
potential:
- class CompressibleNeoHookean[source]#
Bases:
HyperelasticPotentialCompressibleNeoHookean(mu: float, kappa: float, volumetric: equinox._module.Module = VolumetricPart())
-
mu:
float#
-
kappa:
float#
-
volumetric(J):
Module= VolumetricPart()#
-
mu:
- class CompressibleMooneyRivlin[source]#
Bases:
HyperelasticPotentialCompressibleMooneyRivlin(c1: float, c2: float, kappa: float, volumetric: equinox._module.Module = VolumetricPart())
-
c1:
float#
-
c2:
float#
-
kappa:
float#
-
volumetric(J):
Module= VolumetricPart()#
-
c1: