Go to the source code of this file.
◆ registerMooseObject()
◆ validParams< CombinedCreepPlasticity >()
Definition at line 19 of file CombinedCreepPlasticity.C.
23 params.addRequiredParam<std::vector<std::string>>(
"submodels",
24 "List of submodel ConstitutiveModels");
26 params.addParam<
unsigned int>(
"max_its", 30,
"Maximum number of submodel iterations");
27 params.addParam<
bool>(
"internal_solve_full_iteration_history",
29 "Set true to output submodel iteration information");
30 params.addParam<Real>(
31 "relative_tolerance", 1e-5,
"Relative convergence tolerance for combined submodel iteration");
32 params.addParam<Real>(
33 "absolute_tolerance", 1e-5,
"Absolute convergence tolerance for combined submodel iteration");
34 params.addClassDescription(
"Models creep and instantaneous plasticity deformation");