16 InputParameters params = validParams<GeneralUserObject>();
17 params.addParam<
unsigned int>(
"liquid_phase_number", 0,
"The phase number of the liquid phase");
18 params.addParam<
unsigned int>(
19 "liquid_fluid_component", 0,
"The fluid component number of the primary liquid component");
20 params.addParam<
unsigned int>(
"salt_component", 2,
"The component number of salt");
21 params.addRequiredParam<UserObjectName>(
"capillary_pressure",
22 "Name of the UserObject defining the capillary pressure");
23 params.addClassDescription(
"Base class for fluid state classes");
28 : GeneralUserObject(parameters),
29 _aqueous_phase_number(getParam<unsigned int>(
"liquid_phase_number")),
30 _aqueous_fluid_component(getParam<unsigned int>(
"liquid_fluid_component")),
31 _salt_component(getParam<unsigned int>(
"salt_component")),