Skip to content
Snippets Groups Projects
Commit 31dd8cbc authored by Timo Koch's avatar Timo Koch
Browse files

[constant] Add configurable name

parent 618e52d8
No related branches found
No related tags found
2 merge requests!617[WIP] Next,!360Improve Richards model - Add RichardsNC model
...@@ -40,6 +40,7 @@ NEW_PROP_TAG(ProblemLiquidDensity); ...@@ -40,6 +40,7 @@ NEW_PROP_TAG(ProblemLiquidDensity);
NEW_PROP_TAG(ProblemLiquidKinematicViscosity); NEW_PROP_TAG(ProblemLiquidKinematicViscosity);
NEW_PROP_TAG(ProblemGasDensity); NEW_PROP_TAG(ProblemGasDensity);
NEW_PROP_TAG(ProblemGasKinematicViscosity); NEW_PROP_TAG(ProblemGasKinematicViscosity);
NEW_PROP_TAG(ComponentName);
// set default values // set default values
SET_SCALAR_PROP(NumericModel, ProblemMolarMass, 1.0); SET_SCALAR_PROP(NumericModel, ProblemMolarMass, 1.0);
...@@ -47,6 +48,7 @@ SET_SCALAR_PROP(NumericModel, ProblemLiquidDensity, 1.0); ...@@ -47,6 +48,7 @@ SET_SCALAR_PROP(NumericModel, ProblemLiquidDensity, 1.0);
SET_SCALAR_PROP(NumericModel, ProblemLiquidKinematicViscosity, 1.0); SET_SCALAR_PROP(NumericModel, ProblemLiquidKinematicViscosity, 1.0);
SET_SCALAR_PROP(NumericModel, ProblemGasDensity, 1.0); SET_SCALAR_PROP(NumericModel, ProblemGasDensity, 1.0);
SET_SCALAR_PROP(NumericModel, ProblemGasKinematicViscosity, 1.0); SET_SCALAR_PROP(NumericModel, ProblemGasKinematicViscosity, 1.0);
SET_STRING_PROP(NumericModel, ComponentName, "c");
} // end namespace Properties } // end namespace Properties
/*! /*!
...@@ -65,8 +67,12 @@ public: ...@@ -65,8 +67,12 @@ public:
/*! /*!
* \brief A human readable name for the component. * \brief A human readable name for the component.
*/ */
static std::string name() static const std::string& name()
{ return "Constant"; } {
static const std::string name
= GET_PARAM_FROM_GROUP(TypeTag, std::string, Component, Name);
return name;
}
/*! /*!
* \brief The mass in \f$\mathrm{[kg]}\f$ of one mole of the component. * \brief The mass in \f$\mathrm{[kg]}\f$ of one mole of the component.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment