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;
|
||||
}
|
||||
|
||||
for (int c=0;c<nc;c++){
|
||||
for (int c = 0; c < nc ; c++ ) {
|
||||
const PhasePresence cond = phaseCondition()[c];
|
||||
if (not cond.hasFreeGas() & disgas) {
|
||||
if ( (!cond.hasFreeGas()) && disgas ) {
|
||||
isRs[c] = 1;
|
||||
}
|
||||
else if (not cond.hasFreeOil() & vapoil){
|
||||
else if ( (!cond.hasFreeOil()) && vapoil ) {
|
||||
isRv[c] = 1;
|
||||
}
|
||||
else {
|
||||
@ -908,12 +908,12 @@ namespace {
|
||||
}
|
||||
|
||||
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];
|
||||
if (not cond.hasFreeGas() & disgas) {
|
||||
if ( (!cond.hasFreeGas()) && disgas ) {
|
||||
isRs[c] = 1;
|
||||
}
|
||||
else if (not cond.hasFreeOil() & vapoil){
|
||||
else if ( (!cond.hasFreeOil()) && vapoil ) {
|
||||
isRv[c] = 1;
|
||||
}
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user