allow for water-gas system

This commit is contained in:
Paul Egberts 2021-08-01 17:53:57 +02:00
parent ec4bb5c9c7
commit b8b881d6e9

View File

@ -171,10 +171,14 @@ int main(int argc, char **argv)
return Opm::ebosGasOilMain(argc, argv);
}
else if (waterActive && gasActive) {
notSupportedErrorStream << "\n"
<< "water-gas simulations are currently unsupported\n";
std::cerr << notSupportedErrorStream.str() << std::endl;
std::abort();
// run ebos_gaswater
if (myRank == 0)
std::cout << "Using gas-water mode" << std::endl;
Opm::ebosGasWaterSetDeck(std::move(deck),
std::move(parseContext),
std::move(errorGuard),
externalSetupTimer.elapsed());
return Opm::ebosGasWaterMain(argc, argv);
}
}
else if (foamActive) {