You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looks like there is something wrong in the implementation of the phase-field behaviour as the History function is taken at the beginning of the time step and not the end as it should.
@Integrator {
// remove useless warnings, as we always compute the tangent operatorstatic_cast<void>(computeTangentOperator_);
∂q∕∂Δg = Gc*l₀* tmatrix<N, N, real>::Id();
∂Y∕∂Δd = Gc/l₀+2*H;
q = Gc*l₀*(g+Δg);
Y = ∂Y∕∂Δd ⋅ (d+Δd)-2*H;
}
shall be:
@Integrator {
// remove useless warnings, as we always compute the tangent operatorstatic_cast<void>(computeTangentOperator_);
constauto H_tdt = H+dH;
∂q∕∂Δg = Gc*l₀* tmatrix<N, N, real>::Id();
∂Y∕∂Δd = Gc/l₀+2*H_tdt;
q = Gc*l₀*(g+Δg);
Y = ∂Y∕∂Δd ⋅ (d+Δd)-2*H_tdt;
}
The text was updated successfully, but these errors were encountered:
Hi @bleyerj,
Looks like there is something wrong in the implementation of the phase-field behaviour as the History function is taken at the beginning of the time step and not the end as it should.
shall be:
The text was updated successfully, but these errors were encountered: