diff --git a/opm/simulators/wells/WellInterfaceGeneric.cpp b/opm/simulators/wells/WellInterfaceGeneric.cpp index a329bc7d1..4949d56b2 100644 --- a/opm/simulators/wells/WellInterfaceGeneric.cpp +++ b/opm/simulators/wells/WellInterfaceGeneric.cpp @@ -410,6 +410,10 @@ bool WellInterfaceGeneric::thpLimitViolatedButNotSwitched() const double WellInterfaceGeneric::getALQ(const WellState& well_state) const { + // no alq for injectors. + if (isInjector()) + return 0.0; + return well_state.getALQ(name()); }