mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
MultisegmentWellEval: remove mutable from matrices and vectors
This commit is contained in:
parent
2f0c68f574
commit
d1b4b1afae
@ -247,10 +247,10 @@ protected:
|
|||||||
|
|
||||||
// TODO, the following should go to a class for computing purpose
|
// TODO, the following should go to a class for computing purpose
|
||||||
// two off-diagonal matrices
|
// two off-diagonal matrices
|
||||||
mutable OffDiagMatWell duneB_;
|
OffDiagMatWell duneB_;
|
||||||
mutable OffDiagMatWell duneC_;
|
OffDiagMatWell duneC_;
|
||||||
// "diagonal" matrix for the well. It has offdiagonal entries for inlets and outlets.
|
// "diagonal" matrix for the well. It has offdiagonal entries for inlets and outlets.
|
||||||
mutable DiagMatWell duneD_;
|
DiagMatWell duneD_;
|
||||||
|
|
||||||
/// \brief solver for diagonal matrix
|
/// \brief solver for diagonal matrix
|
||||||
///
|
///
|
||||||
@ -258,7 +258,7 @@ protected:
|
|||||||
mutable std::shared_ptr<Dune::UMFPack<DiagMatWell> > duneDSolver_;
|
mutable std::shared_ptr<Dune::UMFPack<DiagMatWell> > duneDSolver_;
|
||||||
|
|
||||||
// residuals of the well equations
|
// residuals of the well equations
|
||||||
mutable BVectorWell resWell_;
|
BVectorWell resWell_;
|
||||||
|
|
||||||
// the values for the primary varibles
|
// the values for the primary varibles
|
||||||
// based on different solutioin strategies, the wells can have different primary variables
|
// based on different solutioin strategies, the wells can have different primary variables
|
||||||
|
Loading…
Reference in New Issue
Block a user