Skip to content
Snippets Groups Projects
Commit 5963f11b authored by Christian Silbermann's avatar Christian Silbermann Committed by Dmitri Naumov
Browse files

Replaced absolute by incrementel integration of pc

parent 7784b956
No related branches found
No related tags found
No related merge requests found
...@@ -186,9 +186,7 @@ p0.setEntryName("InitialPressure"); ...@@ -186,9 +186,7 @@ p0.setEntryName("InitialPressure");
const auto deelV = trace(deel); const auto deelV = trace(deel);
const auto detoV = trace(deto); const auto detoV = trace(deto);
auto deplV = detoV - deelV; auto deplV = detoV - deelV;
auto eplV = epl_V + theta * deplV; const auto pcNew = (pc - pc_min) * exp(-the * deplV) + pc_min;
// TODO only for eplV0=0! make incrementel: pc_char==pc_char->pc
const auto pcNew = (pc_char - pc_min) * exp(-the * eplV) + pc_min;
// calculate the direction of plastic flow // calculate the direction of plastic flow
const auto f = q * q + M2 * p * (p - pcNew); const auto f = q * q + M2 * p * (p - pcNew);
const auto df_dp = M2 * (2 * p - pcNew); const auto df_dp = M2 * (2 * p - pcNew);
...@@ -201,7 +199,6 @@ p0.setEntryName("InitialPressure"); ...@@ -201,7 +199,6 @@ p0.setEntryName("InitialPressure");
// plastic strain and volumetric part // plastic strain and volumetric part
const auto depl = eval(dlp * n); const auto depl = eval(dlp * n);
deplV = trace(depl); deplV = trace(depl);
eplV = epl_V + theta * deplV;
const auto fchar = pc_char * young; const auto fchar = pc_char * young;
...@@ -238,8 +235,9 @@ p0.setEntryName("InitialPressure"); ...@@ -238,8 +235,9 @@ p0.setEntryName("InitialPressure");
Time += dt; Time += dt;
const auto deelV = trace(deel); const auto deelV = trace(deel);
const auto detoV = trace(deto); const auto detoV = trace(deto);
epl_V += detoV - deelV; const auto deplV = detoV - deelV;
pc = (pc_char - pc_min) * exp(-v0 / (la - ka) * epl_V) + pc_min; epl_V += deplV;
pc = (pc - pc_min) * exp(-v0 / (la - ka) * deplV) + pc_min;
v += v0 * detoV; v += v0 * detoV;
} }
......
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