added: MultisegmentWellEquations::solve()

this applies the inverted D matrix to the residual vector.
use the new method in the well implementation.
This commit is contained in:
Arne Morten Kvarving
2022-11-11 21:41:24 +01:00
parent a7cb444328
commit bc312d1117
3 changed files with 12 additions and 4 deletions

View File

@@ -83,6 +83,9 @@ public:
//! \brief Compute the LU-decomposition of D matrix.
void createSolver();
//! \brief Apply inverted D matrix to residual and return result.
BVectorWell solve() const;
// two off-diagonal matrices
OffDiagMatWell duneB_;
OffDiagMatWell duneC_;