Skip to content
Snippets Groups Projects
Commit 40c70f0b authored by Timo Koch's avatar Timo Koch
Browse files

[md][bugfix] Multidomain simuluation need to update the coupling maanger when solution changes

parent e881081a
No related branches found
No related tags found
1 merge request!2527Fix/multidomain newton residual
...@@ -153,6 +153,16 @@ public: ...@@ -153,6 +153,16 @@ public:
couplingManager_->updateSolution(Backend::dofs(varsCurrentIter)); couplingManager_->updateSolution(Backend::dofs(varsCurrentIter));
} }
protected:
/*!
* \brief Update solution-depended quantities like grid variables after the solution has changed.
*/
void solutionChanged_(const SolutionVector &uCurrentIter) override
{
couplingManager_->updateSolution(uCurrentIter);
this->assembler().updateGridVariables(uCurrentIter);
}
private: private:
/*! /*!
......
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