Skip to content
Snippets Groups Projects
Commit e403e11e authored by Florian Zill's avatar Florian Zill
Browse files

[ML/SM] extended interface to get bulk modulus

allows to fetch the bulk modulus inside a process
without specifying a material model.
Solid Materials without own implementation will
cause an OGS_FATAL.
parent fb4137c5
No related branches found
No related tags found
No related merge requests found
...@@ -330,6 +330,12 @@ public: ...@@ -330,6 +330,12 @@ public:
return MaterialProperties(t, x, _mp); return MaterialProperties(t, x, _mp);
} }
double getBulkModulus(double const t,
ParameterLib::SpatialPosition const& x) const override
{
return _mp.K(t, x)[0];
}
DamageProperties evaluatedDamageProperties( DamageProperties evaluatedDamageProperties(
double const t, ParameterLib::SpatialPosition const& x) const double const t, ParameterLib::SpatialPosition const& x) const
{ {
......
...@@ -104,6 +104,14 @@ public: ...@@ -104,6 +104,14 @@ public:
MaterialProperties getMaterialProperties() const { return _mp; } MaterialProperties getMaterialProperties() const { return _mp; }
double getBulkModulus(double const t,
ParameterLib::SpatialPosition const& x) const override
{
return _mp.bulk_modulus(t, x);
}
protected: protected:
MaterialProperties _mp; MaterialProperties _mp;
}; };
......
...@@ -155,6 +155,12 @@ public: ...@@ -155,6 +155,12 @@ public:
new MaterialStateVariables}; new MaterialStateVariables};
} }
double getBulkModulus(double const t,
ParameterLib::SpatialPosition const& x) const override
{
return _mp.KM0(t, x)[0];
}
public: public:
static int const KelvinVectorSize = static int const KelvinVectorSize =
MathLib::KelvinVector::KelvinVectorDimensions<DisplacementDim>::value; MathLib::KelvinVector::KelvinVectorDimensions<DisplacementDim>::value;
......
...@@ -148,6 +148,13 @@ struct MechanicsBase ...@@ -148,6 +148,13 @@ struct MechanicsBase
return ConstitutiveModel::Invalid; return ConstitutiveModel::Invalid;
} }
virtual double getBulkModulus(double const /*t*/,
ParameterLib::SpatialPosition const& /*x*/) const
{
OGS_FATAL(
"getBulkModulus is not yet implemented for this Solid Material.");
}
/// Get temperature related coefficient for the global assembly if there is /// Get temperature related coefficient for the global assembly if there is
/// one. /// one.
virtual double getTemperatureRelatedCoefficient( virtual double getTemperatureRelatedCoefficient(
......
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