mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
compute fluid in place by regions.
This commit is contained in:
committed by
Atgeirr Flø Rasmussen
parent
28583e4237
commit
056708574c
@@ -100,10 +100,12 @@ namespace Opm
|
||||
}
|
||||
|
||||
template <class PhysicalModel>
|
||||
V NonlinearSolver<PhysicalModel>::computeFluidInPlace(const ReservoirState& x,
|
||||
const WellState& xw) const
|
||||
std::vector<V>
|
||||
NonlinearSolver<PhysicalModel>::computeFluidInPlace(const ReservoirState& x,
|
||||
const WellState& xw,
|
||||
const std::vector<int>& fipnum) const
|
||||
{
|
||||
return model_->computeFluidInPlace(x, xw);
|
||||
return model_->computeFluidInPlace(x, xw, fipnum);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user