www.mooseframework.org
Functions
PLC_LSH.C File Reference

Go to the source code of this file.

Functions

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

Function Documentation

◆ registerMooseObject()

registerMooseObject ( "SolidMechanicsApp"  ,
PLC_LSH   
)

◆ validParams< PLC_LSH >()

template<>
InputParameters validParams< PLC_LSH > ( )

Definition at line 18 of file PLC_LSH.C.

19 {
20  InputParameters params = validParams<SolidModel>();
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 
29  // Linear strain hardening parameters
30  params.addRequiredParam<Real>("yield_stress",
31  "The point at which plastic strain begins accumulating");
32  params.addRequiredParam<Real>("hardening_constant", "Hardening slope");
33 
34  // Sub-Newton Iteration control parameters
35  params.addParam<unsigned int>("max_its", 30, "Maximum number of sub-newton iterations");
36  params.addParam<bool>("internal_solve_full_iteration_history",
37  false,
38  "Set true to output sub-newton iteration information");
39  params.addParam<Real>(
40  "relative_tolerance", 1e-5, "Relative convergence tolerance for sub-newtion iteration");
41  params.addParam<Real>(
42  "absolute_tolerance", 1e-20, "Absolute convergence tolerance for sub-newtion iteration");
43  params.addParam<PostprocessorName>(
44  "output", "", "The reporting postprocessor to use for the max_iterations value.");
45 
46  // Control of combined plasticity-creep iterarion
47  params.addParam<Real>("absolute_stress_tolerance",
48  1e-5,
49  "Convergence tolerance for combined plasticity-creep stress iteration");
50 
51  return params;
52 }
validParams< SolidModel >
InputParameters validParams< SolidModel >()
Definition: SolidModel.C:31