Go to the source code of this file.
|
| registerMooseAction ("FluidPropertiesApp", AddFluidPropertiesInterrogatorAction, "setup_mesh") |
|
| registerMooseAction ("FluidPropertiesApp", AddFluidPropertiesInterrogatorAction, "init_mesh") |
|
| registerMooseAction ("FluidPropertiesApp", AddFluidPropertiesInterrogatorAction, "create_problem") |
|
| registerMooseAction ("FluidPropertiesApp", AddFluidPropertiesInterrogatorAction, "add_user_object") |
|
| registerMooseAction ("FluidPropertiesApp", AddFluidPropertiesInterrogatorAction, "setup_executioner") |
|
| registerMooseAction ("FluidPropertiesApp", AddFluidPropertiesInterrogatorAction, "add_output") |
|
| registerMooseAction ("FluidPropertiesApp", AddFluidPropertiesInterrogatorAction, "common_output") |
|
| registerMooseAction ("FluidPropertiesApp", AddFluidPropertiesInterrogatorAction, "add_output_aux_variables") |
|
template<> |
InputParameters | validParams< AddFluidPropertiesInterrogatorAction > () |
|
◆ registerMooseAction() [1/8]
◆ registerMooseAction() [2/8]
◆ registerMooseAction() [3/8]
◆ registerMooseAction() [4/8]
◆ registerMooseAction() [5/8]
◆ registerMooseAction() [6/8]
◆ registerMooseAction() [7/8]
◆ registerMooseAction() [8/8]
◆ validParams< AddFluidPropertiesInterrogatorAction >()
Definition at line 29 of file AddFluidPropertiesInterrogatorAction.C.
31 InputParameters params = validParams<Action>();
32 params.addRequiredParam<UserObjectName>(
"fp",
33 "The name of the fluid properties object to query.");
34 params.addParam<Real>(
"rho",
"Density");
35 params.addParam<Real>(
"rhou",
"Momentum density; rho * u");
36 params.addParam<Real>(
"rhoE",
"Total energy density: rho * E");
37 params.addParam<Real>(
"e",
"Specific internal energy");
38 params.addParam<Real>(
"p",
"Pressure");
39 params.addParam<Real>(
"T",
"Temperature");
40 params.addParam<Real>(
"vel",
"Velocity");
41 params.addParam<std::vector<Real>>(
"x_ncg",
"Mass fractions of NCGs");
42 params.addParam<
unsigned int>(
"precision", 10,
"Precision for printing values");
43 params.addParam<
bool>(
"json",
false,
"Output in JSON format");
45 params.addClassDescription(
"Action that sets up the fluid properties interrogator");