Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitri Naumov
ogs
Commits
e578fa7b
Commit
e578fa7b
authored
4 years ago
by
wenqing
Browse files
Options
Downloads
Patches
Plain Diff
[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
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
MaterialLib/SolidModels/Ehlers.cpp
+5
-0
5 additions, 0 deletions
MaterialLib/SolidModels/Ehlers.cpp
MaterialLib/SolidModels/Ehlers.h
+5
-0
5 additions, 0 deletions
MaterialLib/SolidModels/Ehlers.h
MaterialLib/SolidModels/MechanicsBase.h
+1
-0
1 addition, 0 deletions
MaterialLib/SolidModels/MechanicsBase.h
with
11 additions
and
0 deletions
MaterialLib/SolidModels/Ehlers.cpp
+
5
−
0
View file @
e578fa7b
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
MaterialLib/SolidModels/Ehlers.h
+
5
−
0
View file @
e578fa7b
...
@@ -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
>
;
...
...
This diff is collapsed.
Click to expand it.
MaterialLib/SolidModels/MechanicsBase.h
+
1
−
0
View file @
e578fa7b
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment