44 class SingleNumericalAquifer
47 explicit SingleNumericalAquifer(
const size_t aqu_id);
48 SingleNumericalAquifer() =
default;
53 void postProcessConnections(
const EclipseGrid& grid,
const std::vector<int>& actnum);
57 size_t numCells()
const;
59 size_t numConnections()
const;
64 std::unordered_map<size_t, AquiferCellProps> aquiferCellProps()
const;
66 std::vector<NNCdata> aquiferCellNNCs()
const;
69 const std::vector<NumericalAquiferConnection>& connections()
const;
71 bool operator==(
const SingleNumericalAquifer& other)
const;
73 template<
class Serializer>
75 serializer(this->id_);
76 serializer(this->cells_);
77 serializer(this->connections_);
86 std::vector<NumericalAquiferCell> cells_{};
87 std::vector<NumericalAquiferConnection> connections_{};
This class implements a small container which holds the transmissibility mulitpliers for all the face...
Definition Exceptions.hpp:30