blackoil: rename gasFormationFactor to gasDissolutionFactor

that was a thinko/reado on my side...
This commit is contained in:
Andreas Lauser 2013-11-04 13:55:51 +01:00
parent ea30ffc7be
commit 54a66718bd

View File

@ -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);