adding function updateWellStateWithTarget to StandardWell

without dealing with wsolvent function. It can be just a member variable
since we are handling well one by one individually.
This commit is contained in:
Kai Bao
2017-06-23 10:58:46 +02:00
parent 1d9d70ee02
commit f293e81336
4 changed files with 247 additions and 0 deletions

View File

@@ -352,4 +352,19 @@ namespace Opm
return numComp;
}
template<typename TypeTag>
const double
WellInterface<TypeTag>::
wsolvent() const
{
// TODO: not handling it for the moment
// TODO: it needs information from the well_ecl
// TODO: will decide on well_ecl role later.
// It can be just one member variable and no need to deal with well_ecl at all
return 0.0;
}
}