mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Fix typo in BlackoilPropsAdFromDeck
This commit is contained in:
parent
bd82e5ade9
commit
dbdc42f599
@ -934,8 +934,8 @@ BlackoilPropsAdFromDeck::BlackoilPropsAdFromDeck(const BlackoilPropsAdFromDeck&
|
|||||||
V BlackoilPropsAdFromDeck::scaledCriticalOilinGasSaturations(const Cells& cells) const {
|
V BlackoilPropsAdFromDeck::scaledCriticalOilinGasSaturations(const Cells& cells) const {
|
||||||
|
|
||||||
|
|
||||||
assert(phaseUsage_.phase_used[BlackoilPhases::Gas]);
|
assert(phase_usage_.phase_used[Gas]);
|
||||||
assert(phaseUsage_.phase_used[BlackoilPhases::Oil]);
|
assert(phase_usage_.phase_used[Oil]);
|
||||||
|
|
||||||
const int n = cells.size();
|
const int n = cells.size();
|
||||||
V sogcr = V::Zero(n);
|
V sogcr = V::Zero(n);
|
||||||
@ -953,7 +953,7 @@ BlackoilPropsAdFromDeck::BlackoilPropsAdFromDeck(const BlackoilPropsAdFromDeck&
|
|||||||
/// \return Array of scaled critical gas saturaion values.
|
/// \return Array of scaled critical gas saturaion values.
|
||||||
V BlackoilPropsAdFromDeck::scaledCriticalGasSaturations(const Cells& cells) const {
|
V BlackoilPropsAdFromDeck::scaledCriticalGasSaturations(const Cells& cells) const {
|
||||||
|
|
||||||
assert(phaseUsage_.phase_used[BlackoilPhases::Gas]);
|
assert(phase_usage_.phase_used[Gas]);
|
||||||
|
|
||||||
const int n = cells.size();
|
const int n = cells.size();
|
||||||
V sgcr = V::Zero(n);
|
V sgcr = V::Zero(n);
|
||||||
|
Loading…
Reference in New Issue
Block a user