adapt to the reordering template arguments of get*_(fluidState) in opm-material

This commit is contained in:
Andreas Lauser 2018-01-19 11:49:06 +01:00
parent 49289c272d
commit 8b7c14c4db

View File

@ -1207,9 +1207,8 @@ private:
if (!dRsDtOnlyFreeGas_ || fs.saturation(gasPhaseIdx) > freeGasMinSaturation_) if (!dRsDtOnlyFreeGas_ || fs.saturation(gasPhaseIdx) > freeGasMinSaturation_)
lastRs_[compressedDofIdx] = lastRs_[compressedDofIdx] =
Opm::BlackOil::template getRs_<FluidSystem, Opm::BlackOil::template getRs_<FluidSystem,
Scalar, FluidState,
FluidState>(fs, Scalar>(fs, iq.pvtRegionIndex());
iq.pvtRegionIndex());
else else
lastRs_[compressedDofIdx] = std::numeric_limits<Scalar>::infinity(); lastRs_[compressedDofIdx] = std::numeric_limits<Scalar>::infinity();
} }
@ -1236,9 +1235,8 @@ private:
lastRv_[compressedDofIdx] = lastRv_[compressedDofIdx] =
Opm::BlackOil::template getRv_<FluidSystem, Opm::BlackOil::template getRv_<FluidSystem,
Scalar, FluidState,
FluidState>(fs, Scalar>(fs, iq.pvtRegionIndex());
iq.pvtRegionIndex());
} }
} }
} }