WIP in handling the summary output for AQUFLUX

AAQR, AAQP, AAQT works fine while FAQR and FAQT are not handled yet.
This commit is contained in:
Kai Bao
2023-02-09 22:11:39 +01:00
parent 83457f679e
commit d412158cf7
5 changed files with 23 additions and 6 deletions

View File

@@ -263,6 +263,7 @@ namespace Opm
const Well& getWellatEnd(const std::string& well_name) const;
// get the list of the constant flux aquifer through the whole schedule
std::vector<int> getAquiferFluxListEnd() const;
bool hasAquiferFlux(int id) const;
std::vector<Well> getWells(std::size_t timeStep) const;
std::vector<Well> getWellsatEnd() const;
void shut_well(const std::string& well_name, std::size_t report_step);
@@ -367,6 +368,7 @@ namespace Opm
this->template pack_unpack_map<int, VFPInjTable>(serializer);
this->template pack_unpack_map<std::string, Group>(serializer);
this->template pack_unpack_map<std::string, Well>(serializer);
// TODO: anything related to aquflux aquifers?
}
template <typename T, class Serializer>