www.mooseframework.org
Functions
PowerLawCreepModel.C File Reference

Go to the source code of this file.

Functions

 registerMooseObject ("SolidMechanicsApp", PowerLawCreepModel)
 
template<>
InputParameters validParams< PowerLawCreepModel > ()
 

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "SolidMechanicsApp"  ,
PowerLawCreepModel   
)

◆ validParams< PowerLawCreepModel >()

template<>
InputParameters validParams< PowerLawCreepModel > ( )

Definition at line 18 of file PowerLawCreepModel.C.

19 {
20  InputParameters params = validParams<ReturnMappingModel>();
21 
22  // Power-law creep material parameters
23  params.addRequiredParam<Real>("coefficient", "Leading coefficent in power-law equation");
24  params.addRequiredParam<Real>("n_exponent", "Exponent on effective stress in power-law equation");
25  params.addParam<Real>("m_exponent", 0.0, "Exponent on time in power-law equation");
26  params.addRequiredParam<Real>("activation_energy", "Activation energy");
27  params.addParam<Real>("gas_constant", 8.3143, "Universal gas constant");
28  params.addParam<Real>("start_time", 0, "Start time (if not zero)");
29 
30  return params;
31 }

Referenced by validParams< PowerLawCreep >().

validParams< ReturnMappingModel >
InputParameters validParams< ReturnMappingModel >()
Definition: ReturnMappingModel.C:17