not throwing when encountering multisegment wells.

This commit is contained in:
Kai Bao 2017-08-29 10:01:31 +02:00
parent 160314424e
commit b4538af164

View File

@ -144,9 +144,10 @@ namespace Opm {
}
const Well* well_ecl = wells_ecl[index_well];
if (well_ecl->isMultiSegment(time_step)) {
// TODO: stopping throwing when encoutnering MS wells for now.
/* if (well_ecl->isMultiSegment(time_step)) {
OPM_THROW(Opm::NumericalProblem, "Not handling Multisegment Wells for now");
}
} */
// Basically, we are handling all the wells as StandardWell for the moment
well_container.emplace_back(new StandardWell<TypeTag>(well_ecl, time_step, wells) );