Go to the source code of this file.
◆ registerMooseObject()
registerMooseObject |
( |
"MiscApp" |
, |
|
|
Density |
|
|
) |
| |
◆ validParams< Density >()
Definition at line 16 of file Density.C.
18 InputParameters params = validParams<Material>();
20 params.addCoupledVar(
"disp_r",
"The r displacement");
21 params.addCoupledVar(
"disp_x",
"The x displacement");
22 params.addCoupledVar(
"disp_y",
"The y displacement");
23 params.addCoupledVar(
"disp_z",
"The z displacement");
27 "The displacements appropriate for the simulation geometry and coordinate system");
29 params.addParam<std::string>(
"base_name",
30 "Optional parameter that allows the user to define "
31 "multiple material systems on the same block, "
32 "e.g. for multiple phases");
33 params.addRequiredParam<Real>(
"density",
"Density");
34 params.addClassDescription(
"Creates density material property");