mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
final revert
This commit is contained in:
parent
94c0b49cf7
commit
2470b20d13
@ -177,6 +177,11 @@ void StandardWellEquations<Scalar,numEq>::solve(BVectorWell& dx_well) const
|
|||||||
invDuneD_.mv(resWell_, dx_well);
|
invDuneD_.mv(resWell_, dx_well);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template<class Scalar, int numEq>
|
||||||
|
void StandardWellEquations<Scalar,numEq>::solve(BVectorWell& rhs_well, BVectorWell& x_well) const
|
||||||
|
{
|
||||||
|
invDuneD_.mv(rhs_well, x_well);
|
||||||
|
}
|
||||||
|
|
||||||
template<class Scalar, int numEq>
|
template<class Scalar, int numEq>
|
||||||
void StandardWellEquations<Scalar,numEq>::
|
void StandardWellEquations<Scalar,numEq>::
|
||||||
|
@ -89,6 +89,9 @@ public:
|
|||||||
//! \brief Apply inverted D matrix to residual and store in vector.
|
//! \brief Apply inverted D matrix to residual and store in vector.
|
||||||
void solve(BVectorWell& dx_well) const;
|
void solve(BVectorWell& dx_well) const;
|
||||||
|
|
||||||
|
//! \brief Apply inverted D matrix to rhs and store in vector.
|
||||||
|
void solve(BVectorWell& rhs_well, BVectorWell& x_well) const;
|
||||||
|
|
||||||
//! \brief Invert D matrix.
|
//! \brief Invert D matrix.
|
||||||
void invert();
|
void invert();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user