diff --git a/MaterialLib/MPL/Component.h b/MaterialLib/MPL/Component.h index 98c264760d265f5542697c74a4bb20f6de99397b..972dfbce0890f09050099acb5b4ea1ed48a7c53a 100644 --- a/MaterialLib/MPL/Component.h +++ b/MaterialLib/MPL/Component.h @@ -51,19 +51,19 @@ public: template <typename T> T dValue(PropertyType const p, VariableArray const& variable_array, - Variables const variables) const + Variable const variable) const { - return property(p).template dValue<T>(variable_array, variables); + return property(p).template dValue<T>(variable_array, variable); } template <typename T> T d2Value(PropertyType const p, VariableArray const& variable_array, - Variables const variables1, - Variables const variables2) const + Variable const variable1, + Variable const variable2) const { - return property(p).template d2Value<T>(variable_array, variables1, - variables2); + return property(p).template d2Value<T>(variable_array, variable1, + variable2); } std::string name() const; diff --git a/MaterialLib/MPL/CreateProperty.cpp b/MaterialLib/MPL/CreateProperty.cpp index a8f7ee4f1e78d2d4d8cf7b56031e5a2783fe4114..0bffdcaf5ed40bde795d4d7ebb0a941d8b126c75 100644 --- a/MaterialLib/MPL/CreateProperty.cpp +++ b/MaterialLib/MPL/CreateProperty.cpp @@ -121,7 +121,7 @@ std::unique_ptr<MaterialPropertyLib::Property> createProperty( //! \ogs_file_param{properties__property__LinearProperty__independent_variable__slope} independent_variable_config.getConfigParameter<double>("slope"); - MaterialPropertyLib::Variables ivt = + MaterialPropertyLib::Variable ivt = MaterialPropertyLib::convertStringToVariable(variable_name); MaterialPropertyLib::IndependentVariable const iv{ diff --git a/MaterialLib/MPL/Medium.h b/MaterialLib/MPL/Medium.h index 49c5eeec8e00b60cae395fb50d4ca3bfc83759fa..1bd7dad7a7f1def5a3bbde719997e678502d8305 100644 --- a/MaterialLib/MPL/Medium.h +++ b/MaterialLib/MPL/Medium.h @@ -62,19 +62,19 @@ public: template <typename T> T dValue(PropertyType const p, VariableArray const& variable_array, - Variables const variables) const + Variable const variable) const { - return property(p).template dValue<T>(variable_array, variables); + return property(p).template dValue<T>(variable_array, variable); } template <typename T> T d2Value(PropertyType const p, VariableArray const& variable_array, - Variables const variables1, - Variables const variables2) const + Variable const variable1, + Variable const variable2) const { - return property(p).template d2Value<T>(variable_array, variables1, - variables2); + return property(p).template d2Value<T>(variable_array, variable1, + variable2); } private: diff --git a/MaterialLib/MPL/Properties/LinearProperty.cpp b/MaterialLib/MPL/Properties/LinearProperty.cpp index a50d4aab9b909247e26945521c40970c9e7eab7a..f1d70959ef6f8cf9ccec89e255daf908aa10affb 100644 --- a/MaterialLib/MPL/Properties/LinearProperty.cpp +++ b/MaterialLib/MPL/Properties/LinearProperty.cpp @@ -30,7 +30,7 @@ PropertyDataType LinearProperty::value( } PropertyDataType LinearProperty::dValue(VariableArray const& /*variable_array*/, - Variables const primary_variable) const + Variable const primary_variable) const { return _independent_variable.type == primary_variable ? _independent_variable.slope @@ -39,8 +39,8 @@ PropertyDataType LinearProperty::dValue(VariableArray const& /*variable_array*/, PropertyDataType LinearProperty::d2Value( VariableArray const& /*variable_array*/, - Variables const /*pv1*/, - Variables const /*pv2*/) const + Variable const /*pv1*/, + Variable const /*pv2*/) const { return decltype(_value){}; } diff --git a/MaterialLib/MPL/Properties/LinearProperty.h b/MaterialLib/MPL/Properties/LinearProperty.h index e2985dd736df4cfbec809392a3911f21c1fde30c..7ba5ebe49d31bbdc12f8aea2ebb46b7ba0e6bce6 100644 --- a/MaterialLib/MPL/Properties/LinearProperty.h +++ b/MaterialLib/MPL/Properties/LinearProperty.h @@ -18,7 +18,7 @@ namespace MaterialPropertyLib struct IndependentVariable { - Variables type; + Variable type; VariableType reference_condition; // scalar or vector VariableType slope; // scalar or matrix }; @@ -40,12 +40,12 @@ public: /// This method will compute the derivative of a property with respect to /// the given primary variable. PropertyDataType dValue(VariableArray const& variable_array, - Variables const primary_variable) const override; + Variable const primary_variable) const override; /// This method will compute the second derivative of a /// property with respect to the given primary variables pv1 and pv2. PropertyDataType d2Value(VariableArray const& variable_array, - Variables const pv1, - Variables const pv2) const override; + Variable const pv1, + Variable const pv2) const override; private: IndependentVariable const _independent_variable; diff --git a/MaterialLib/MPL/Property.cpp b/MaterialLib/MPL/Property.cpp index 53c0e46c072f6b7c2f927788345b0b2bf367bf80..10fca184d674b4f0309c5a6dbc3deb3e5d9fd79f 100644 --- a/MaterialLib/MPL/Property.cpp +++ b/MaterialLib/MPL/Property.cpp @@ -32,15 +32,15 @@ PropertyDataType Property::value(VariableArray const& /*variable_array*/) const /// The default implementation of this method only returns the /// property value derivative without altering it. PropertyDataType Property::dValue(VariableArray const& /*variable_array*/, - Variables const /*variables*/) const + Variable const /*variable*/) const { return _dvalue; } /// Default implementation: 2nd derivative of any constant property is zero. PropertyDataType Property::d2Value(VariableArray const& /*variable_array*/, - Variables const /*variables*/, - Variables const /*variables*/) const + Variable const /*variable*/, + Variable const /*variable*/) const { return 0.0; } diff --git a/MaterialLib/MPL/Property.h b/MaterialLib/MPL/Property.h index cc8f9c45f610d17d772043e5f300a37427aa122c..a086887db94e31532cf2653504c9b04d9e838e2b 100644 --- a/MaterialLib/MPL/Property.h +++ b/MaterialLib/MPL/Property.h @@ -55,14 +55,14 @@ public: /// variables that are passed as arguments. virtual PropertyDataType value(VariableArray const& variable_array) const; /// This virtual method will compute the derivative of a property - /// with respect to the given variables pv. + /// with respect to the given variable pv. virtual PropertyDataType dValue(VariableArray const& variable_array, - Variables const variables) const; + Variable const variable) const; /// This virtual method will compute the second derivative of a /// property with respect to the given variables pv1 and pv2. virtual PropertyDataType d2Value(VariableArray const& variable_array, - Variables const variables1, - Variables const variables2) const; + Variable const variable1, + Variable const variable2) const; template <typename T> T value() const @@ -76,16 +76,16 @@ public: } template <typename T> T dValue(VariableArray const& variable_array, - Variables const variables) const + Variable const variable) const { - return boost::get<T>(dValue(variable_array, variables)); + return boost::get<T>(dValue(variable_array, variable)); } template <typename T> T d2Value(VariableArray const& variable_array, - Variables const& variables1, - Variables const& variables2) const + Variable const& variable1, + Variable const& variable2) const { - return boost::get<T>(d2Value(variable_array, variables1, variables2)); + return boost::get<T>(d2Value(variable_array, variable1, variable2)); } protected: diff --git a/MaterialLib/MPL/VariableType.cpp b/MaterialLib/MPL/VariableType.cpp index a287735de5e30d1771bb2323bef49e5b88848085..9c3df233edca97efe4ec379d6fba7ed2312b41a9 100644 --- a/MaterialLib/MPL/VariableType.cpp +++ b/MaterialLib/MPL/VariableType.cpp @@ -15,41 +15,41 @@ namespace MaterialPropertyLib { -Variables convertStringToVariable(std::string const& input) +Variable convertStringToVariable(std::string const& input) { if (boost::iequals(input, "phase_pressure")) { - return Variables::phase_pressure; + return Variable::phase_pressure; } if (boost::iequals(input, "capillary_pressure")) { - return Variables::capillary_pressure; + return Variable::capillary_pressure; } if (boost::iequals(input, "gas_density")) { - return Variables::gas_density; + return Variable::gas_density; } if (boost::iequals(input, "liquid_density")) { - return Variables::liquid_density; + return Variable::liquid_density; } if (boost::iequals(input, "temperature")) { - return Variables::temperature; + return Variable::temperature; } if (boost::iequals(input, "liquid_saturation")) { - return Variables::liquid_saturation; + return Variable::liquid_saturation; } if (boost::iequals(input, "u")) { - return Variables::u; + return Variable::u; } OGS_FATAL( "The variable name '%s' does not correspond to any known variable", input.c_str()); - return Variables::number_of_variables; // to avoid the 'no return' warning + return Variable::number_of_variables; // to avoid the 'no return' warning } } // namespace MaterialPropertyLib diff --git a/MaterialLib/MPL/VariableType.h b/MaterialLib/MPL/VariableType.h index e7a55756701fb5828c405088c1f307048525fef7..15cd7b2ea89bc52a6a1d712d1446678769ed52f7 100644 --- a/MaterialLib/MPL/VariableType.h +++ b/MaterialLib/MPL/VariableType.h @@ -34,10 +34,10 @@ using SymmTensor = std::array<double, 6>; /// tensor components. using Tensor = std::array<double, 9>; -/// Variables is simply a list of all commonly used variables that are used to -/// determine the size of the VariableArray. If the variable of your choice is -/// missing, simply add it somewhere at the list, but above the last entry. -enum Variables : int +/// Enum Variable is simply a list of all commonly used variables that are used +/// to determine the size of the VariableArray. If the variable of your choice +/// is missing, simply add it somewhere at the list, but above the last entry. +enum Variable : int { phase_pressure, capillary_pressure, @@ -54,9 +54,9 @@ enum Variables : int using VariableType = boost::variant<double, Vector>; /// The VariableArray is a std::array of fixed size. Its size is determined by -/// the Variables enumerator list. Data type of that array is defined by the +/// the Variable enumerator list. Data type of that array is defined by the /// VariableType definition. -using VariableArray = std::array<VariableType, Variables::number_of_variables>; +using VariableArray = std::array<VariableType, Variable::number_of_variables>; /// This method returns a value of type double from the variables array inline double getScalar(VariableType pv) @@ -64,5 +64,5 @@ inline double getScalar(VariableType pv) return boost::get<double>(pv); } -Variables convertStringToVariable(std::string const& input); +Variable convertStringToVariable(std::string const& input); } // namespace MaterialPropertyLib