2019-03-14 07:35:59 -05:00
|
|
|
/*
|
|
|
|
Copyright 2017 TNO - Heat Transfer & Fluid Dynamics, Modelling & Optimization of the Subsurface
|
|
|
|
Copyright 2017 Statoil ASA.
|
|
|
|
|
|
|
|
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_AQUIFETP_HEADER_INCLUDED
|
|
|
|
#define OPM_AQUIFETP_HEADER_INCLUDED
|
|
|
|
|
2022-08-11 02:17:53 -05:00
|
|
|
#include <opm/simulators/aquifers/AquiferAnalytical.hpp>
|
2019-03-14 07:35:59 -05:00
|
|
|
|
2019-11-28 10:26:58 -06:00
|
|
|
#include <opm/output/data/Aquifer.hpp>
|
|
|
|
|
|
|
|
#include <exception>
|
|
|
|
#include <stdexcept>
|
2021-06-01 16:20:28 -05:00
|
|
|
#include <utility>
|
2019-11-28 10:26:58 -06:00
|
|
|
|
2019-03-14 07:35:59 -05:00
|
|
|
namespace Opm
|
|
|
|
{
|
|
|
|
|
2019-12-20 07:30:13 -06:00
|
|
|
template <typename TypeTag>
|
2022-08-11 02:17:53 -05:00
|
|
|
class AquiferFetkovich : public AquiferAnalytical<TypeTag>
|
2019-12-20 07:30:13 -06:00
|
|
|
{
|
2019-03-14 07:35:59 -05:00
|
|
|
|
2019-12-20 07:30:13 -06:00
|
|
|
public:
|
2022-08-11 02:17:53 -05:00
|
|
|
using Base = AquiferAnalytical<TypeTag>;
|
2019-03-14 07:35:59 -05:00
|
|
|
|
2019-12-20 07:30:13 -06:00
|
|
|
using typename Base::BlackoilIndices;
|
2019-03-14 07:35:59 -05:00
|
|
|
using typename Base::ElementContext;
|
2019-12-20 07:30:13 -06:00
|
|
|
using typename Base::Eval;
|
|
|
|
using typename Base::FluidState;
|
2019-03-14 07:35:59 -05:00
|
|
|
using typename Base::FluidSystem;
|
|
|
|
using typename Base::IntensiveQuantities;
|
2019-12-20 07:30:13 -06:00
|
|
|
using typename Base::RateVector;
|
2019-03-14 07:35:59 -05:00
|
|
|
using typename Base::Scalar;
|
2019-12-20 07:30:13 -06:00
|
|
|
using typename Base::Simulator;
|
2020-11-24 07:58:15 -06:00
|
|
|
using typename Base::ElementMapper;
|
2019-03-14 07:35:59 -05:00
|
|
|
|
2020-02-10 10:39:04 -06:00
|
|
|
AquiferFetkovich(const std::vector<Aquancon::AquancCell>& connections,
|
2019-12-20 07:30:13 -06:00
|
|
|
const Simulator& ebosSimulator,
|
|
|
|
const Aquifetp::AQUFETP_data& aqufetp_data)
|
2020-12-08 09:09:01 -06:00
|
|
|
: Base(aqufetp_data.aquiferID, connections, ebosSimulator)
|
2019-12-20 07:30:13 -06:00
|
|
|
, aqufetp_data_(aqufetp_data)
|
|
|
|
{
|
|
|
|
}
|
2019-03-14 07:35:59 -05:00
|
|
|
|
2019-12-10 04:29:27 -06:00
|
|
|
void endTimeStep() override
|
2019-03-14 07:35:59 -05:00
|
|
|
{
|
2020-02-10 10:39:04 -06:00
|
|
|
for (const auto& q : this->Qai_) {
|
|
|
|
this->W_flux_ += q * this->ebos_simulator_.timeStepSize();
|
2019-12-20 07:30:13 -06:00
|
|
|
}
|
2020-12-15 02:07:49 -06:00
|
|
|
aquifer_pressure_ = aquiferPressure();
|
2019-03-14 07:35:59 -05:00
|
|
|
}
|
|
|
|
|
2022-08-24 08:36:56 -05:00
|
|
|
data::AquiferData aquiferData() const override
|
2020-10-01 16:30:07 -05:00
|
|
|
{
|
|
|
|
// TODO: how to unify the two functions?
|
2021-05-12 05:16:20 -05:00
|
|
|
auto data = data::AquiferData{};
|
|
|
|
|
|
|
|
data.aquiferID = this->aquiferID();
|
2020-10-01 16:30:07 -05:00
|
|
|
data.pressure = this->aquifer_pressure_;
|
2021-05-12 05:16:20 -05:00
|
|
|
data.fluxRate = std::accumulate(this->Qai_.begin(), this->Qai_.end(), 0.0,
|
|
|
|
[](const double flux, const auto& q) -> double
|
|
|
|
{
|
|
|
|
return flux + q.value();
|
|
|
|
});
|
2020-10-01 16:30:07 -05:00
|
|
|
data.volume = this->W_flux_.value();
|
|
|
|
data.initPressure = this->pa0_;
|
2021-05-12 10:12:03 -05:00
|
|
|
|
2021-06-01 16:20:28 -05:00
|
|
|
auto* aquFet = data.typeData.template create<data::AquiferType::Fetkovich>();
|
|
|
|
aquFet->initVolume = this->aqufetp_data_.initial_watvolume;
|
|
|
|
aquFet->prodIndex = this->aqufetp_data_.prod_index;
|
|
|
|
aquFet->timeConstant = this->aqufetp_data_.timeConstant();
|
2021-05-12 10:12:03 -05:00
|
|
|
|
2020-10-01 16:30:07 -05:00
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2019-12-20 07:30:13 -06:00
|
|
|
protected:
|
2019-03-14 07:35:59 -05:00
|
|
|
// Aquifer Fetkovich Specific Variables
|
2021-05-12 17:37:10 -05:00
|
|
|
Aquifetp::AQUFETP_data aqufetp_data_;
|
2019-03-14 07:35:59 -05:00
|
|
|
Scalar aquifer_pressure_; // aquifer
|
|
|
|
|
2019-11-28 10:26:58 -06:00
|
|
|
void assignRestartData(const data::AquiferData& xaq) override
|
|
|
|
{
|
2021-06-01 16:20:28 -05:00
|
|
|
if (! xaq.typeData.is<data::AquiferType::Fetkovich>()) {
|
2021-05-12 05:16:20 -05:00
|
|
|
throw std::invalid_argument {
|
|
|
|
"Analytic aquifer data for unexpected aquifer "
|
|
|
|
"type passed to Fetkovich aquifer"
|
|
|
|
};
|
2019-12-20 07:30:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
this->aquifer_pressure_ = xaq.pressure;
|
2021-06-22 08:29:34 -05:00
|
|
|
this->rhow_ = this->aqufetp_data_.waterDensity();
|
2019-11-28 10:26:58 -06:00
|
|
|
}
|
|
|
|
|
2019-11-08 06:24:16 -06:00
|
|
|
inline Eval dpai(int idx)
|
2019-03-14 07:35:59 -05:00
|
|
|
{
|
2021-05-12 17:37:10 -05:00
|
|
|
const auto gdz =
|
|
|
|
this->gravity_() * (this->cell_depth_[idx] - this->aquiferDepth());
|
|
|
|
|
|
|
|
return this->aquifer_pressure_ + this->rhow_*gdz
|
|
|
|
- this->pressure_current_.at(idx);
|
2019-03-14 07:35:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// This function implements Eq 5.12 of the EclipseTechnicalDescription
|
|
|
|
inline Scalar aquiferPressure()
|
|
|
|
{
|
2020-02-10 10:39:04 -06:00
|
|
|
Scalar Flux = this->W_flux_.value();
|
2021-05-12 17:37:10 -05:00
|
|
|
|
2020-12-15 02:01:03 -06:00
|
|
|
const auto& comm = this->ebos_simulator_.vanguard().grid().comm();
|
|
|
|
comm.sum(&Flux, 1);
|
2021-05-12 17:37:10 -05:00
|
|
|
|
|
|
|
const auto denom =
|
|
|
|
this->aqufetp_data_.total_compr * this->aqufetp_data_.initial_watvolume;
|
|
|
|
|
|
|
|
return this->pa0_ - (Flux / denom);
|
2019-03-14 07:35:59 -05:00
|
|
|
}
|
|
|
|
|
2019-12-10 04:29:27 -06:00
|
|
|
inline void calculateAquiferConstants() override
|
2019-03-14 07:35:59 -05:00
|
|
|
{
|
2021-05-12 17:37:10 -05:00
|
|
|
this->Tc_ = this->aqufetp_data_.timeConstant();
|
2019-03-14 07:35:59 -05:00
|
|
|
}
|
2021-05-12 17:37:10 -05:00
|
|
|
|
2019-03-14 07:35:59 -05:00
|
|
|
// This function implements Eq 5.14 of the EclipseTechnicalDescription
|
2019-12-10 04:29:27 -06:00
|
|
|
inline void calculateInflowRate(int idx, const Simulator& simulator) override
|
2019-03-14 07:35:59 -05:00
|
|
|
{
|
2020-02-10 10:39:04 -06:00
|
|
|
const Scalar td_Tc_ = simulator.timeStepSize() / this->Tc_;
|
2019-12-20 07:30:13 -06:00
|
|
|
const Scalar coef = (1 - exp(-td_Tc_)) / td_Tc_;
|
2021-05-12 17:37:10 -05:00
|
|
|
|
|
|
|
this->Qai_.at(idx) = coef * this->alphai_[idx] *
|
|
|
|
this->aqufetp_data_.prod_index * dpai(idx);
|
2019-03-14 07:35:59 -05:00
|
|
|
}
|
|
|
|
|
2019-12-10 04:29:27 -06:00
|
|
|
inline void calculateAquiferCondition() override
|
2019-03-14 07:35:59 -05:00
|
|
|
{
|
2019-12-20 07:30:13 -06:00
|
|
|
if (this->solution_set_from_restart_) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-05-12 17:37:10 -05:00
|
|
|
if (! this->aqufetp_data_.initial_pressure.has_value()) {
|
|
|
|
this->aqufetp_data_.initial_pressure =
|
|
|
|
this->calculateReservoirEquilibrium();
|
|
|
|
|
|
|
|
const auto& tables = this->ebos_simulator_.vanguard()
|
|
|
|
.eclState().getTableManager();
|
|
|
|
|
|
|
|
this->aqufetp_data_.finishInitialisation(tables);
|
2019-12-20 07:30:13 -06:00
|
|
|
}
|
2021-05-12 17:37:10 -05:00
|
|
|
|
|
|
|
this->rhow_ = this->aqufetp_data_.waterDensity();
|
|
|
|
this->pa0_ = this->aqufetp_data_.initial_pressure.value();
|
|
|
|
this->aquifer_pressure_ = this->pa0_;
|
2019-03-14 07:35:59 -05:00
|
|
|
}
|
|
|
|
|
2020-09-24 09:09:56 -05:00
|
|
|
virtual Scalar aquiferDepth() const override
|
2019-03-14 07:35:59 -05:00
|
|
|
{
|
2021-05-12 17:37:10 -05:00
|
|
|
return this->aqufetp_data_.datum_depth;
|
2019-03-14 07:35:59 -05:00
|
|
|
}
|
2019-12-20 07:30:13 -06:00
|
|
|
}; // Class AquiferFetkovich
|
2022-08-10 07:27:34 -05:00
|
|
|
|
2019-01-07 04:44:33 -06:00
|
|
|
} // namespace Opm
|
2022-08-10 07:27:34 -05:00
|
|
|
|
2019-03-14 07:35:59 -05:00
|
|
|
#endif
|