diff --git a/MaterialLib/MPL/Utils/FormKelvinVectorFromThermalExpansivity.cpp b/MaterialLib/MPL/Utils/FormKelvinVector.cpp similarity index 89% rename from MaterialLib/MPL/Utils/FormKelvinVectorFromThermalExpansivity.cpp rename to MaterialLib/MPL/Utils/FormKelvinVector.cpp index 9972d97de0bb43ee745df2a80315a88e21a158a2..e1fd045d23f1c0837883d0e4af1c6f047ddd6759 100644 --- a/MaterialLib/MPL/Utils/FormKelvinVectorFromThermalExpansivity.cpp +++ b/MaterialLib/MPL/Utils/FormKelvinVector.cpp @@ -16,7 +16,7 @@ namespace MaterialPropertyLib { static constexpr const char error_info[] = - "The conversion to a Kelvin vector of correct dimensionality is ambigous." + "The conversion to a Kelvin vector of correct dimensionality is ambiguous." "Please use a scalar number for isotropic properties, a three element " "array or a 3 x 3 matrix for anisotropic properties."; @@ -78,22 +78,17 @@ struct FormKelvinVector } }; - template <int GlobalDim> -MathLib::KelvinVector::KelvinVectorType<GlobalDim> -formKelvinVector( +MathLib::KelvinVector::KelvinVectorType<GlobalDim> formKelvinVector( MaterialPropertyLib::PropertyDataType const& values) { - return std::visit(FormKelvinVector<GlobalDim>(), - values); + return std::visit(FormKelvinVector<GlobalDim>(), values); } -template MathLib::KelvinVector::KelvinVectorType<2> -formKelvinVector<2>( +template MathLib::KelvinVector::KelvinVectorType<2> formKelvinVector<2>( MaterialPropertyLib::PropertyDataType const& values); -template MathLib::KelvinVector::KelvinVectorType<3> -formKelvinVector<3>( +template MathLib::KelvinVector::KelvinVectorType<3> formKelvinVector<3>( MaterialPropertyLib::PropertyDataType const& values); } // namespace MaterialPropertyLib diff --git a/MaterialLib/MPL/Utils/FormKelvinVectorFromThermalExpansivity.h b/MaterialLib/MPL/Utils/FormKelvinVector.h similarity index 94% rename from MaterialLib/MPL/Utils/FormKelvinVectorFromThermalExpansivity.h rename to MaterialLib/MPL/Utils/FormKelvinVector.h index b11a0ea4c9c31828551ea44cca98397f275232f3..a7db805b7fe2fbd4aa3cd542ad93e6458bfb5ee1 100644 --- a/MaterialLib/MPL/Utils/FormKelvinVectorFromThermalExpansivity.h +++ b/MaterialLib/MPL/Utils/FormKelvinVector.h @@ -32,8 +32,7 @@ namespace MaterialPropertyLib * @return Kelvin vector type property. */ template <int GlobalDim> -MathLib::KelvinVector::KelvinVectorType<GlobalDim> -formKelvinVector( +MathLib::KelvinVector::KelvinVectorType<GlobalDim> formKelvinVector( MaterialPropertyLib::PropertyDataType const& values); } // namespace MaterialPropertyLib diff --git a/ProcessLib/ThermoHydroMechanics/ThermoHydroMechanicsFEM-impl.h b/ProcessLib/ThermoHydroMechanics/ThermoHydroMechanicsFEM-impl.h index 910522822eba7b67bdd92677044784eb1f3d2a2a..c9597713ae7a4387a4b99e5099f14b231a0d3cad 100644 --- a/ProcessLib/ThermoHydroMechanics/ThermoHydroMechanicsFEM-impl.h +++ b/ProcessLib/ThermoHydroMechanics/ThermoHydroMechanicsFEM-impl.h @@ -15,7 +15,7 @@ #include "MaterialLib/MPL/Medium.h" #include "MaterialLib/MPL/Property.h" #include "MaterialLib/MPL/Utils/FormEigenTensor.h" -#include "MaterialLib/MPL/Utils/FormKelvinVectorFromThermalExpansivity.h" +#include "MaterialLib/MPL/Utils/FormKelvinVector.h" #include "MaterialLib/MPL/Utils/GetLiquidThermalExpansivity.h" #include "MaterialLib/SolidModels/SelectSolidConstitutiveRelation.h" #include "MathLib/KelvinVector.h" @@ -363,7 +363,7 @@ void ThermoHydroMechanicsLocalAssembler< // Consider also anisotropic thermal expansion. MathLib::KelvinVector::KelvinVectorType< DisplacementDim> const solid_linear_thermal_expansion_coefficient = - MPL::formKelvinVectorFromThermalExpansivity<DisplacementDim>( + MPL::formKelvinVector<DisplacementDim>( solid_phase .property( MaterialPropertyLib::PropertyType::thermal_expansivity) @@ -834,7 +834,7 @@ void ThermoHydroMechanicsLocalAssembler< // Consider also anisotropic thermal expansion. MathLib::KelvinVector::KelvinVectorType< DisplacementDim> const solid_linear_thermal_expansion_coefficient = - MPL::formKelvinVectorFromThermalExpansivity<DisplacementDim>( + MPL::formKelvinVector<DisplacementDim>( solid_phase .property( MaterialPropertyLib::PropertyType::thermal_expansivity) diff --git a/ProcessLib/ThermoMechanics/ThermoMechanicsFEM-impl.h b/ProcessLib/ThermoMechanics/ThermoMechanicsFEM-impl.h index a44b9d7b433ffa77765c457800d3385e0ffcf0f3..01e3a9edfca0b50d554a3230cd0003b3e8f77065 100644 --- a/ProcessLib/ThermoMechanics/ThermoMechanicsFEM-impl.h +++ b/ProcessLib/ThermoMechanics/ThermoMechanicsFEM-impl.h @@ -15,7 +15,7 @@ #include "MaterialLib/MPL/Medium.h" #include "MaterialLib/MPL/Property.h" #include "MaterialLib/MPL/Utils/FormEigenTensor.h" -#include "MaterialLib/MPL/Utils/FormKelvinVectorFromThermalExpansivity.h" +#include "MaterialLib/MPL/Utils/FormKelvinVector.h" #include "ProcessLib/Utils/SetOrGetIntegrationPointData.h" #include "ProcessLib/Utils/TransposeInPlace.h" @@ -197,7 +197,7 @@ void ThermoMechanicsLocalAssembler<ShapeFunction, DisplacementDim>:: // Consider also anisotropic thermal expansion. auto const solid_linear_thermal_expansivity_vector = - MPL::formKelvinVectorFromThermalExpansivity<DisplacementDim>( + MPL::formKelvinVector<DisplacementDim>( solid_phase .property( MaterialPropertyLib::PropertyType::thermal_expansivity) @@ -429,7 +429,7 @@ void ThermoMechanicsLocalAssembler<ShapeFunction, DisplacementDim>:: // Consider also anisotropic thermal expansion. auto const solid_linear_thermal_expansivity_vector = - MPL::formKelvinVectorFromThermalExpansivity<DisplacementDim>( + MPL::formKelvinVector<DisplacementDim>( solid_phase .property( MaterialPropertyLib::PropertyType::thermal_expansivity) diff --git a/ProcessLib/ThermoRichardsMechanics/ConstitutiveCommon/SolidThermalExpansion.cpp b/ProcessLib/ThermoRichardsMechanics/ConstitutiveCommon/SolidThermalExpansion.cpp index e7cc364a94034ffb24d3d01ad41b09e3dd8d6113..70879c949403d159719396590cc3f867099c1384 100644 --- a/ProcessLib/ThermoRichardsMechanics/ConstitutiveCommon/SolidThermalExpansion.cpp +++ b/ProcessLib/ThermoRichardsMechanics/ConstitutiveCommon/SolidThermalExpansion.cpp @@ -10,7 +10,7 @@ #include "SolidThermalExpansion.h" -#include "MaterialLib/MPL/Utils/FormKelvinVectorFromThermalExpansivity.h" +#include "MaterialLib/MPL/Utils/FormKelvinVector.h" namespace ProcessLib::ThermoRichardsMechanics { @@ -24,7 +24,7 @@ void SolidThermalExpansionModel<DisplacementDim>::eval( // Consider also anisotropic thermal expansion. out.solid_linear_thermal_expansivity_vector = - MPL::formKelvinVectorFromThermalExpansivity<DisplacementDim>( + MPL::formKelvinVector<DisplacementDim>( media_data.solid.property(MPL::PropertyType::thermal_expansivity) .value(variables, x_t.x, x_t.t, x_t.dt)); } diff --git a/ProcessLib/ThermoRichardsMechanics/ThermoRichardsMechanicsFEM-impl.h b/ProcessLib/ThermoRichardsMechanics/ThermoRichardsMechanicsFEM-impl.h index 19e618a14d47d88041cc8fcfcb64c8c053f5c523..a2c741b908051634781467748951e73d1b524fc4 100644 --- a/ProcessLib/ThermoRichardsMechanics/ThermoRichardsMechanicsFEM-impl.h +++ b/ProcessLib/ThermoRichardsMechanics/ThermoRichardsMechanicsFEM-impl.h @@ -18,7 +18,6 @@ #include "MaterialLib/MPL/Medium.h" #include "MaterialLib/MPL/Utils/FormEigenTensor.h" -#include "MaterialLib/MPL/Utils/FormKelvinVectorFromThermalExpansivity.h" #include "MaterialLib/MPL/Utils/GetLiquidThermalExpansivity.h" #include "MaterialLib/PhysicalConstant.h" #include "MathLib/KelvinVector.h"