-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Swaziri/experimental #3348
base: develop
Are you sure you want to change the base?
Swaziri/experimental #3348
Conversation
…anicsEFEM_impl.hpp
…stick condition. now it gets updated after newton converges
arrayView2d< real64 const > const & traction = subRegion.getField< fields::contact::traction >(); | ||
arrayView1d< real64 const > const & pressure = subRegion.template getField< fields::flow::pressure >(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should not be here...
… into swaziri/experimental
@@ -269,7 +280,7 @@ inline void CoulombFrictionUpdates::computeShearTraction( localIndex const k, | |||
dTractionVector_dJump[2][2] = m_shearStiffness; | |||
|
|||
// The slip is only elastic: we add the full slip to the elastic one | |||
LvArray::tensorOps::add< 2 >( m_elasticSlip[k], slip ); | |||
//LvArray::tensorOps::add< 2 >( m_elasticSlip[k], slip ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@CusiniM this update and update on the lines 314-315 below got moved into updateFractureState
.
The reason is: those quantities should not be updated at every Newton but once at the end of the time step insted.
updateFractureState
is probably not the best place either, what would be the better one?
No description provided.