mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-26 21:36:25 -06:00
Add POC for AquiferConfig can be used
This commit is contained in:
parent
86972dc494
commit
9c8d5946b4
@ -139,6 +139,19 @@ template <typename TypeTag>
|
||||
void
|
||||
BlackoilAquiferModel<TypeTag>::init()
|
||||
{
|
||||
/*
|
||||
const auto& comm = this->simulator_.vanguard().gridView().comm();
|
||||
const auto& aquifer = this->simulator_.vanguard().eclState().aquifer();
|
||||
const auto& connections = aquifer.connections();
|
||||
|
||||
|
||||
for (const auto& aq : aquifer.fetp())
|
||||
aquifers_Fetkovich.push_back(AquiferFetkovich<TypeTag>(connections[aq.aquiferID], cartesian_to_compressed_, this->simulator_, aq));
|
||||
|
||||
for (const auto& aq : aquifer.ct())
|
||||
aquifers_CarterTracy.push_back(AquiferCarterTracy<TypeTag>(connections[aq.aquiferID], cartesian_to_compressed_, this->simulator_, aq));
|
||||
*/
|
||||
|
||||
const auto& deck = this->simulator_.vanguard().deck();
|
||||
const auto& comm = this->simulator_.vanguard().gridView().comm();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user