www.mooseframework.org
Classes | Typedefs | Functions
AbaqusUmatMaterial.h File Reference

Go to the source code of this file.

Classes

class  AbaqusUmatMaterial
 

Typedefs

typedef void(* umat_t) (Real STRESS[], Real STATEV[], Real DDSDDE[], Real *SSE, Real *SPD, Real *SCD, Real *RPL, Real DDSDDT[], Real DRPLDE[], Real *DRPLDT, Real STRAN[], Real DSTRAN[], Real TIME[], Real *DTIME, Real *TEMP, Real *DTEMP, Real PREDEF[], Real DPRED[], Real *CMNAME, int *NDI, int *NSHR, int *NTENS, int *NSTATV, Real PROPS[], int *NPROPS, Real COORDS[], Real DROT[][3], Real *PNEWDT, Real *CELENT, Real DFGRD0[], Real DFGRD1[], int *NOEL, int *NPT, int *LAYER, int *KSPT, int *KSTEP, int *KINC)
 

Functions

template<>
InputParameters validParams< AbaqusUmatMaterial > ()
 

Typedef Documentation

◆ umat_t

typedef void(* umat_t) (Real STRESS[], Real STATEV[], Real DDSDDE[], Real *SSE, Real *SPD, Real *SCD, Real *RPL, Real DDSDDT[], Real DRPLDE[], Real *DRPLDT, Real STRAN[], Real DSTRAN[], Real TIME[], Real *DTIME, Real *TEMP, Real *DTEMP, Real PREDEF[], Real DPRED[], Real *CMNAME, int *NDI, int *NSHR, int *NTENS, int *NSTATV, Real PROPS[], int *NPROPS, Real COORDS[], Real DROT[][3], Real *PNEWDT, Real *CELENT, Real DFGRD0[], Real DFGRD1[], int *NOEL, int *NPT, int *LAYER, int *KSPT, int *KSTEP, int *KINC)

Definition at line 14 of file AbaqusUmatMaterial.h.

Function Documentation

◆ validParams< AbaqusUmatMaterial >()

template<>
InputParameters validParams< AbaqusUmatMaterial > ( )

Definition at line 21 of file AbaqusUmatMaterial.C.

22 {
23  InputParameters params = validParams<SolidModel>();
24  params.addRequiredParam<FileName>(
25  "plugin", "The path to the compiled dynamic library for the plugin you want to use");
26  params.addRequiredParam<std::vector<Real>>("mechanical_constants",
27  "Mechanical Material Properties");
28  params.addParam<std::vector<Real>>("thermal_constants", "Thermal Material Properties");
29  params.addRequiredParam<unsigned int>("num_state_vars",
30  "The number of state variables this UMAT is going to use");
31  return params;
32 }
validParams< SolidModel >
InputParameters validParams< SolidModel >()
Definition: SolidModel.C:31