The porevolume was multiplied twice in computeAccum for the gas phase dissolved in the oil

This commit is contained in:
Tor Harald Sandve 2013-09-19 10:44:10 +02:00
parent 512d49c41a
commit 5a88259da4

View File

@ -545,8 +545,8 @@ namespace Opm {
const int po = pu.phase_pos[ Oil ];
const int pg = pu.phase_pos[ Gas ];
rq_[pg].accum[aix] += pv_mult * state.rs * rq_[po].accum[aix];
// DUMP(rq_[pg].accum[aix]);
rq_[pg].accum[aix] += state.rs * rq_[po].accum[aix];
//DUMP(rq_[pg].accum[aix]);
}
}