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
Chaofan Chen
ogs
Commits
01c9156f
Commit
01c9156f
authored
2 years ago
by
Florian Zill
Committed by
Dmitri Naumov
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[MFront] changed stress criterion for PLLC
parent
5b192cef
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
MaterialLib/SolidModels/MFront/PowerLawLinearCreep.mfront
+9
-12
9 additions, 12 deletions
MaterialLib/SolidModels/MFront/PowerLawLinearCreep.mfront
with
9 additions
and
12 deletions
MaterialLib/SolidModels/MFront/PowerLawLinearCreep.mfront
+
9
−
12
View file @
01c9156f
...
...
@@ -51,7 +51,7 @@ Ru.setEntryName("UniversalGasConstant");
@Integrator
{
const auto s = deviator(sig);
const auto norm_s = sigmaeq(sig) / std::sqrt(3. / 2.);
const auto norm_s =
std::max(
sigmaeq(sig)
,1e-14*mu)
/ std::sqrt(3. / 2.);
constexpr auto Pdev = Stensor4::K();
const auto bPL = std::pow(3. / 2., (m + 1) / 2) * A1 *
...
...
@@ -59,15 +59,12 @@ Ru.setEntryName("UniversalGasConstant");
const auto bL = 3. / 2. * A2 / std::pow(Dgrain, 3) *
std::exp(-Q2 / Ru / (T + dT)) / sig0;
if (norm_s > 1e-14 * mu)
{
const auto norm_s_pow = std::pow(norm_s, m - 1);
depsPL = dt * bPL * norm_s_pow * s;
depsL = dt * bL * s;
feel += depsPL + depsL;
dfeel_ddeel +=
2. * mu * dt *
(bPL * norm_s_pow * (Pdev + (((m - 1) / norm_s / norm_s) * s ^ s)) +
bL * Pdev);
}
const auto norm_s_pow = std::pow(norm_s, m - 1);
depsPL = dt * bPL * norm_s_pow * s;
depsL = dt * bL * s;
feel += depsPL + depsL;
dfeel_ddeel +=
2. * mu * dt *
(bPL * norm_s_pow * (Pdev + (((m - 1) / norm_s / norm_s) * s ^ s)) +
bL * Pdev);
}
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