Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
40c70f0b
Commit
40c70f0b
authored
Mar 21, 2021
by
Timo Koch
Browse files
[md][bugfix] Multidomain simuluation need to update the coupling maanger when solution changes
parent
e881081a
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/multidomain/newtonsolver.hh
View file @
40c70f0b
...
...
@@ -153,6 +153,16 @@ public:
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:
/*!
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment