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.
This commit is contained in:
Mark Olesen
2019-07-26 15:10:38 +02:00
committed by Andrew Heather
parent 1ccddd04ef
commit 6a7954fda1

View File

@ -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