Skip to content
Snippets Groups Projects
Commit 6a7954fd authored by Mark OLESEN's avatar Mark OLESEN Committed by Andrew Heather
Browse files

COMP: make mass transfer rates mutable

- in InterfaceCompositionPhaseChangePhaseSystem, the mass transfer
  rates are updated as a side-effect of the massTransfer() method,
  which makes these fields non-const.
parent 1ccddd04
Branches
Tags
No related merge requests found
......@@ -105,10 +105,10 @@ protected:
interfaceCompositionModelTable interfaceCompositionModels_;
//- The explicit part of the interfacial mass transfer rates
iDmdtSuSpTable iDmdtSu_;
mutable iDmdtSuSpTable iDmdtSu_;
//- The implicit part of the interfacial mass transfer rates
iDmdtSuSpTable iDmdtSp_;
mutable iDmdtSuSpTable iDmdtSp_;
// Protected member functions
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment