mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-25 10:40:21 -06:00
Fixed missing documentation
This commit is contained in:
parent
ed02b4a91f
commit
b2ac4c7aac
@ -470,12 +470,12 @@ namespace {
|
|||||||
disgas = true;
|
disgas = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int c=0;c<nc;c++){
|
for (int c = 0; c < nc ; c++ ) {
|
||||||
const PhasePresence cond = phaseCondition()[c];
|
const PhasePresence cond = phaseCondition()[c];
|
||||||
if (not cond.hasFreeGas() & disgas) {
|
if ( (!cond.hasFreeGas()) && disgas ) {
|
||||||
isRs[c] = 1;
|
isRs[c] = 1;
|
||||||
}
|
}
|
||||||
else if (not cond.hasFreeOil() & vapoil){
|
else if ( (!cond.hasFreeOil()) && vapoil ) {
|
||||||
isRv[c] = 1;
|
isRv[c] = 1;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -908,12 +908,12 @@ namespace {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const std::vector<PhasePresence> conditions = phaseCondition();
|
const std::vector<PhasePresence> conditions = phaseCondition();
|
||||||
for (int c=0;c<nc;c++){
|
for (int c = 0; c < nc; c++ ) {
|
||||||
const PhasePresence cond = conditions[c];
|
const PhasePresence cond = conditions[c];
|
||||||
if (not cond.hasFreeGas() & disgas) {
|
if ( (!cond.hasFreeGas()) && disgas ) {
|
||||||
isRs[c] = 1;
|
isRs[c] = 1;
|
||||||
}
|
}
|
||||||
else if (not cond.hasFreeOil() & vapoil){
|
else if ( (!cond.hasFreeOil()) && vapoil ) {
|
||||||
isRv[c] = 1;
|
isRv[c] = 1;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Loading…
Reference in New Issue
Block a user