92 lines
2.7 KiB
C++
Executable File
92 lines
2.7 KiB
C++
Executable File
/*
|
|
Copyright (C) 2017 TNO
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OPM is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef OPM_AQUIFERFETP_HPP
|
|
#define OPM_AQUIFERFETP_HPP
|
|
|
|
/*
|
|
The Aquiferfetp which stands for AquiferFetkovich is a data container object meant to hold the data for the fetkovich aquifer model.
|
|
This includes the logic for parsing as well as the associated tables. It is meant to be used by opm-grid and opm-simulators in order to
|
|
implement the Fetkovich analytical aquifer model in OPM Flow.
|
|
*/
|
|
#include <vector>
|
|
|
|
|
|
namespace Opm {
|
|
|
|
class Deck;
|
|
class DeckRecord;
|
|
|
|
class Aquifetp {
|
|
public:
|
|
|
|
struct AQUFETP_data{
|
|
AQUFETP_data(const DeckRecord& record);
|
|
AQUFETP_data() = default;
|
|
AQUFETP_data(int aquiferID_, int pvttableID_, double J_, double C_t_, double V0_, double d0_, const std::pair<bool, double>& p0_);
|
|
bool operator==(const AQUFETP_data& other) const;
|
|
|
|
int aquiferID;
|
|
int pvttableID;
|
|
double J, // Specified Productivity Index
|
|
C_t, // total rock compressibility
|
|
V0, // initial volume of water in aquifer
|
|
d0; // aquifer datum depth
|
|
std::pair<bool, double> p0;
|
|
|
|
template<class Serializer>
|
|
void serializeOp(Serializer& serializer)
|
|
{
|
|
serializer(aquiferID);
|
|
serializer(pvttableID);
|
|
serializer(J);
|
|
serializer(C_t);
|
|
serializer(V0);
|
|
serializer(d0);
|
|
serializer(p0);
|
|
}
|
|
};
|
|
|
|
Aquifetp() = default;
|
|
Aquifetp(const Deck& deck);
|
|
Aquifetp(const std::vector<Aquifetp::AQUFETP_data>& data);
|
|
|
|
static Aquifetp serializeObject();
|
|
|
|
const std::vector<Aquifetp::AQUFETP_data>& data() const;
|
|
|
|
std::size_t size() const;
|
|
std::vector<Aquifetp::AQUFETP_data>::const_iterator begin() const;
|
|
std::vector<Aquifetp::AQUFETP_data>::const_iterator end() const;
|
|
bool operator==(const Aquifetp& other) const;
|
|
|
|
template<class Serializer>
|
|
void serializeOp(Serializer& serializer)
|
|
{
|
|
serializer.vector(m_aqufetp);
|
|
}
|
|
|
|
private:
|
|
std::vector<Aquifetp::AQUFETP_data> m_aqufetp;
|
|
};
|
|
}
|
|
|
|
|
|
#endif
|