From 54a66718bd0c62b49f7fa93fee9d6b7e1f528267 Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Mon, 4 Nov 2013 13:55:51 +0100 Subject: [PATCH] blackoil: rename gasFormationFactor to gasDissolutionFactor that was a thinko/reado on my side... --- tests/models/problems/reservoirproblem.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/models/problems/reservoirproblem.hh b/tests/models/problems/reservoirproblem.hh index 6e7c8c5da..89a992da8 100644 --- a/tests/models/problems/reservoirproblem.hh +++ b/tests/models/problems/reservoirproblem.hh @@ -249,7 +249,7 @@ public: }; FluidSystem::setGasFormationVolumeFactor(Bg); FluidSystem::setOilFormationVolumeFactor(Bo); - FluidSystem::setGasFormationFactor(Rs); + FluidSystem::setGasDissolutionFactor(Rs); FluidSystem::setOilViscosity(muo); FluidSystem::setGasViscosity(mug); FluidSystem::setWaterViscosity(9.6e-4); @@ -545,7 +545,7 @@ private: // system. Scalar pSat = pReservoir_; // the saturation pressure of the oil Scalar Bo = FluidSystem::oilFormationVolumeFactor(pSat); - Scalar Rs = FluidSystem::gasFormationFactor(pSat); + Scalar Rs = FluidSystem::gasDissolutionFactor(pSat); Scalar rhoo = FluidSystem::surfaceDensity(oPhaseIdx)/Bo; Scalar rhogref = FluidSystem::surfaceDensity(gPhaseIdx);