From 760ac2de67443f6efc0ee7c541e2e257f7f5b96b Mon Sep 17 00:00:00 2001 From: Jonathan Youett <youett@math.fu-berlin.de> Date: Mon, 12 Nov 2018 10:03:20 +0100 Subject: [PATCH] Add a warning --- dune/contact/assemblers/largedeformationcontactassembler.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dune/contact/assemblers/largedeformationcontactassembler.cc b/dune/contact/assemblers/largedeformationcontactassembler.cc index 398fc5eb..eac89ca3 100644 --- a/dune/contact/assemblers/largedeformationcontactassembler.cc +++ b/dune/contact/assemblers/largedeformationcontactassembler.cc @@ -23,7 +23,7 @@ void LargeDeformationContactAssembler<GridType, VectorType>::assembleProblem() dynamic_cast<LargeDefCoupling*>(this->contactCoupling_[i].get())->buildProjection(); assembleLinearisations(); - assembleClpReflections(); + assembleClpReflections(); // TODO this has to be adjusted according to which projection is used? this->assembleObstacle(); // compute the exact mortar transformation matrix @@ -50,7 +50,7 @@ void LargeDeformationContactAssembler<GridType, VectorType>::assembleClpReflecti for (size_t j=0; j<directions.size(); j++) { directions[j] /= directions[j].two_norm(); - directions[j] *= -1; + directions[j] *= -1; // TODO Is it +1 in the case of normal projection? } this->computeLocalCoordinateSystems(nonmortarBoundary, coordinateSystems[i], directions); -- GitLab