Product: Abaqus/Standard
User subroutine UANISOHYPER_INV:
can be used to define the strain energy potential of anisotropic hyperelastic materials as a function of an irreducible set of scalar invariants;
is called at all material calculation points of elements for which the material definition contains user-defined anisotropic hyperelastic behavior with an invariant-based formulation (“Anisotropic hyperelastic behavior,” Section 18.5.3 of the Abaqus Analysis User's Manual);
can include material behavior dependent on field variables or state variables; and
requires that the values of the derivatives of the strain energy density function of the anisotropic hyperelastic material be defined with respect to the scalar invariants.
To facilitate coding and provide easy access to the array of invariants passed to user subroutine UANISOHYPER_INV, an enumerated representation of each invariant is introduced. Any scalar invariant can, therefore, be represented uniquely by an enumerated invariant, , where the subscript n denotes the order of the invariant according to the enumeration scheme in the following table:
For example, in the case of three families of fibers there are a total of 15 invariants: ,
,
, six invariants of type
, and six invariants of type
, with
. The following correspondence exists between each of these invariants and their enumerated counterpart:
A similar scheme is used for the array ZETA of terms . Each term can be represented uniquely by an enumerated counterpart
, as shown below:
The components of the array UI1 of first derivatives of the strain energy potential with respect to the scalar invariants, , are stored using the enumeration scheme discussed above for the scalar invariants.
The elements of the array UI2 of second derivatives of the strain energy function, , are laid out in memory using triangular storage: if
denotes the component in this array corresponding to the term
, then
. For example, the term
is stored in component
in the UI2 array.
There are several special considerations that need to be noted.
When UANISOHYPER_INV is used to define the material response of shell elements that calculate transverse shear energy, Abaqus/Standard cannot calculate a default value for the transverse shear stiffness of the element. Hence, you must define the element's transverse shear stiffness. See “Shell section behavior,” Section 25.6.4 of the Abaqus Analysis User's Manual, for guidelines on choosing this stiffness.
When UANISOHYPER_INV is used to define the material response of elements with hourglassing modes, you must define the hourglass stiffness for hourglass control based on the total stiffness approach. The hourglass stiffness is not required for enhanced hourglass control, but you can define a scaling factor for the stiffness associated with the drill degree of freedom (rotation about the surface normal). See “Section controls,” Section 23.1.4 of the Abaqus Analysis User's Manual.
SUBROUTINE UANISOHYPER_INV (AINV, UA, ZETA, NFIBERS, NINV, 1 UI1, UI2, UI3, TEMP, NOEL, CMNAME, INCMPFLAG, IHYBFLAG, 2 NUMSTATEV, STATEV, NUMFIELDV, FIELDV, FIELDVINC, 3 NUMPROPS, PROPS) C INCLUDE 'ABA_PARAM.INC' C CHARACTER*80 CMNAME DIMENSION AINV(NINV), UA(2), 2 ZETA(NFIBERS*(NFIBERS-1)/2)), UI1(NINV), 3 UI2(NINV*(NINV+1)/2), UI3(NINV*(NINV+1)/2), 4 STATEV(NUMSTATEV), FIELDV(NUMFIELDV), 5 FIELDVINC(NUMFIELDV), PROPS(NUMPROPS) user coding to define UA,UI1,UI2,UI3,STATEV RETURN END
UA(1)
U, strain energy density function. For a compressible material at least one derivative involving J should be nonzero. For an incompressible material all derivatives involving J are ignored.
UA(2)
, the deviatoric part of the strain energy density of the primary material response. This quantity is needed only if the current material definition also includes Mullins effect (see “Mullins effect in rubberlike materials,” Section 18.6.1 of the Abaqus Analysis User's Manual).
UI1(NINV)
Array of derivatives of strain energy potential with respect to the scalar invariants, , ordered using the enumeration scheme discussed above.
UI2(NINV*(NINV+1)/2)
Array of second derivatives of strain energy potential with respect to the scalar invariants (using triangular storage), .
UI3(NINV*(NINV+1)/2)
Array of derivatives with respect to J of the second derivatives of the strain energy potential (using triangular storage), . This quantity is needed only for compressible materials with a hybrid formulation (when INCMPFLAG = 0 and IHYBFLAG = 1).
STATEV
Array containing the user-defined solution-dependent state variables at this point. These are supplied as values at the start of the increment or as values updated by other user subroutines (see “User subroutines: overview,” Section 14.2.1 of the Abaqus Analysis User's Manual) and must be returned as values at the end of the increment.
NFIBERS
Number of families of fibers defined for this material.
NINV
Number of scalar invariants.
TEMP
Current temperature at this point.
NOEL
Element number.
CMNAME
User-specified material name, left justified.
INCMPFLAG
Incompressibility flag defined to be 1 if the material is specified as incompressible or 0 if the material is specified as compressible.
IHYBFLAG
Hybrid formulation flag defined to be 1 for hybrid elements; 0 otherwise.
NUMSTATEV
User-defined number of solution-dependent state variables associated with this material (see “Allocating space” in “User subroutines: overview,” Section 14.2.1 of the Abaqus Analysis User's Manual).
NUMFIELDV
Number of field variables.
FIELDV
Array of interpolated values of predefined field variables at this material point at the end of the increment based on the values read in at the nodes (initial values at the beginning of the analysis and current values during the analysis).
FIELDVINC
Array of increments of predefined field variables at this material point for this increment, including any values updated by user subroutine USDFLD.
NUMPROPS
Number of material properties entered for this user-defined hyperelastic material.
PROPS
Array of material properties entered for this user-defined hyperelastic material.
AINV(NINV)
Array of scalar invariants, , at each material point at the end of the increment. The invariants are ordered using the enumeration scheme discussed above.
ZETA(NFIBERS*(NFIBERS-1)/2))
Array of dot product between the directions of different families of fiber in the reference configuration, . The array contains the enumerated values
using the scheme discussed above.