Skip to content
Snippets Groups Projects
Commit e578fa7b authored by wenqing's avatar wenqing
Browse files

[ConstitutiveLaw] added a member to get equivalent plastic strain increment

parent 534f6bd5
No related branches found
No related tags found
No related merge requests found
...@@ -46,6 +46,11 @@ namespace Solids ...@@ -46,6 +46,11 @@ namespace Solids
{ {
namespace Ehlers namespace Ehlers
{ {
template <int DisplacementDim>
double StateVariables<DisplacementDim>::getEquivalentPlasticStrain() const
{
return std::sqrt(2.0 / 3.0 * Invariants::FrobeniusNorm(eps_p.D.eval()));
}
/// Special product of \c v with itself: \f$v \odot v\f$. /// Special product of \c v with itself: \f$v \odot v\f$.
/// The tensor \c v is given in Kelvin mapping. /// The tensor \c v is given in Kelvin mapping.
......
...@@ -232,6 +232,11 @@ struct StateVariables ...@@ -232,6 +232,11 @@ struct StateVariables
damage_prev = damage; damage_prev = damage;
} }
double getEquivalentPlasticStrain() const override;
static int const KelvinVectorSize =
MathLib::KelvinVector::KelvinVectorDimensions<DisplacementDim>::value;
using Invariants = MathLib::KelvinVector::Invariants<KelvinVectorSize>;
using KelvinVector = using KelvinVector =
MathLib::KelvinVector::KelvinVectorType<DisplacementDim>; MathLib::KelvinVector::KelvinVectorType<DisplacementDim>;
......
...@@ -59,6 +59,7 @@ struct MechanicsBase ...@@ -59,6 +59,7 @@ struct MechanicsBase
{ {
virtual ~MaterialStateVariables() = default; virtual ~MaterialStateVariables() = default;
virtual void pushBackState(){}; virtual void pushBackState(){};
virtual double getEquivalentPlasticStrain() const { return 0.0; }
}; };
/// Polymorphic creator for MaterialStateVariables objects specific for a /// Polymorphic creator for MaterialStateVariables objects specific for a
......
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