Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
LYNX
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Antoine Jacquey
LYNX
Commits
a78b935f
Commit
a78b935f
authored
Mar 13, 2019
by
Antoine Jacquey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed initializeDamageParameters as it is not needed anymore
parent
31ef9294
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
25 deletions
+0
-25
include/materials/LynxDamageDeformation.h
include/materials/LynxDamageDeformation.h
+0
-1
src/materials/LynxDamageDeformation.C
src/materials/LynxDamageDeformation.C
+0
-24
No files found.
include/materials/LynxDamageDeformation.h
View file @
a78b935f
...
...
@@ -46,7 +46,6 @@ protected:
virtual
Real
convexPlasticIncrement
(
Real
&
vol_plastic_incr
,
Real
&
eqv_plastic_incr
);
virtual
void
computeDamageProperties
(
const
Real
&
pressure
,
const
Real
&
eqv_stress
);
virtual
void
updateDamageParameters
();
virtual
void
initializeDamageParameters
();
virtual
void
updateDamageConvexParameters
(
const
Real
&
pressure
,
const
Real
&
eqv_stress
);
virtual
Real
convexReferencePressure
();
virtual
Real
dConvexPlasticYield2
(
const
Real
&
rho
);
...
...
src/materials/LynxDamageDeformation.C
View file @
a78b935f
...
...
@@ -112,9 +112,6 @@ LynxDamageDeformation::LynxDamageDeformation(const InputParameters & parameters)
void
LynxDamageDeformation
::
initializeQpDeformation
()
{
// Need to get _xi0
initializeDamageParameters
();
// Initialize yield derivative
_dyield_dp_tr
=
0
.
0
;
_dyield_dq_tr
=
0
.
0
;
...
...
@@ -415,27 +412,6 @@ LynxDamageDeformation::updateDamageParameters()
averageProperty
(
_one_on_damage_eta
));
}
void
LynxDamageDeformation
::
initializeDamageParameters
()
{
Real
sin_phi
=
std
::
sin
(
averageProperty
(
_friction_angle
)
*
libMesh
::
pi
/
180
.
0
);
Real
xi0
=
-
std
::
sqrt
(
3
.
0
)
/
std
::
sqrt
(
1
.
0
+
1
.
5
*
Utility
::
pow
<
2
>
(
averageProperty
(
_bulk_modulus
)
/
averageProperty
(
_shear_modulus
)
*
sin_phi
));
Real
porous_coeff
=
averageProperty
(
_porous_coeff
)
+
averageProperty
(
_porous_coeff_linear
)
*
_porosity
[
_qp
];
Real
p_cr
=
_K
[
_qp
]
*
(
std
::
sqrt
(
3
.
0
)
+
xi0
)
/
(
3
.
0
*
porous_coeff
);
Real
k0
=
std
::
sqrt
(
3
.
0
)
*
averageProperty
(
_cohesion
)
*
std
::
cos
(
averageProperty
(
_friction_angle
)
*
libMesh
::
pi
/
180
.
0
);
_damage_plasticity
->
fill
(
xi0
,
averageProperty
(
_damage_modulus
),
p_cr
,
k0
,
averageProperty
(
_one_on_plastic_eta
),
averageProperty
(
_one_on_damage_eta
));
}
void
LynxDamageDeformation
::
updateDamageConvexParameters
(
const
Real
&
pressure
,
const
Real
&
eqv_stress
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment