Go to the source code of this file.
◆ registerMooseObject()
◆ validParams< MixedSwitchingFunctionMaterial >()
Definition at line 16 of file MixedSwitchingFunctionMaterial.C.
19 params.addClassDescription(
"Helper material to provide h(eta) and its derivative in one of two "
20 "polynomial forms. MIX234 and MIX246");
21 MooseEnum h_order(
"MIX234=0 MIX246",
"MIX234");
22 params.addParam<MooseEnum>(
23 "h_order", h_order,
"Polynomial order of the switching function h(eta)");
24 params.set<std::string>(
"function_name") = std::string(
"h");
26 params.addRangeCheckedParam<Real>(
27 "weight", 1.0,
"weight <= 1 & weight >= 0",
"Weight parameter for MIX type h(eta)");