mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-29 20:43:49 -06:00
drop using statement for wfoam
rather qualify member function calls with this->
This commit is contained in:
parent
6cfd259f2f
commit
83671b3448
@ -262,7 +262,6 @@ namespace Opm
|
||||
|
||||
protected:
|
||||
// protected functions from the Base class
|
||||
using Base::wfoam;
|
||||
using Base::mostStrictBhpFromBhpLimits;
|
||||
using Base::getALQ;
|
||||
|
||||
|
@ -653,7 +653,7 @@ namespace Opm
|
||||
const unsigned gasCompIdx = Indices::canonicalToActiveComponentIndex(FluidSystem::gasCompIdx);
|
||||
EvalWell cq_s_foam = cq_s[gasCompIdx] * well_efficiency_factor_;
|
||||
if (this->isInjector()) {
|
||||
cq_s_foam *= wfoam();
|
||||
cq_s_foam *= this->wfoam();
|
||||
} else {
|
||||
cq_s_foam *= this->extendEval(intQuants.foamConcentration());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user