Skip to content
Snippets Groups Projects
Commit a646b8b1 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MatL] E: calculatePlasticResidual returns result.

parent e8d9830b
No related branches found
No related tags found
No related merge requests found
......@@ -613,12 +613,11 @@ newton(double const dt, MaterialProperties const& mp,
double const k_hardening =
calculateIsotropicHardening(mp.kappa, mp.hardening_coefficient,
solution[KelvinVectorSize * 2 + 1]);
calculatePlasticResidual<DisplacementDim>(
residual = calculatePlasticResidual<DisplacementDim>(
eps_D, eps_V, s,
solution.template segment<KelvinVectorSize>(KelvinVectorSize),
eps_p_D_dot, solution[KelvinVectorSize * 2], eps_p_V_dot,
eps_p_eff_dot, solution[KelvinVectorSize * 2 + 2], k_hardening, mp,
residual);
eps_p_eff_dot, solution[KelvinVectorSize * 2 + 2], k_hardening, mp);
};
auto const update_jacobian = [&](JacobianMatrix& jacobian) {
......
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