mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-02 12:36:54 -06:00
6dd043446e
This commit captures the rock compaction transmissibility multiplier in the 'PerfData' during the non-lienear iterations and communicates the converged value back to the output layer through the new data member to the data::Connection structure, double data::Connection::compact_mult
111 lines
3.5 KiB
C++
111 lines
3.5 KiB
C++
/*
|
|
Copyright 2021 Equinor 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_PERFDATA_HEADER_INCLUDED
|
|
#define OPM_PERFDATA_HEADER_INCLUDED
|
|
|
|
#include <opm/simulators/wells/ConnFiltrateData.hpp>
|
|
|
|
#include <cstddef>
|
|
#include <vector>
|
|
#include <array>
|
|
|
|
namespace Opm {
|
|
|
|
class PerfData
|
|
{
|
|
private:
|
|
bool injector;
|
|
|
|
public:
|
|
PerfData() = default;
|
|
PerfData(std::size_t num_perf,
|
|
double pressure_first_connection_,
|
|
bool injector_,
|
|
std::size_t num_phases);
|
|
|
|
static PerfData serializationTestObject();
|
|
|
|
std::size_t size() const;
|
|
bool empty() const;
|
|
bool try_assign(const PerfData& other);
|
|
|
|
template<class Serializer>
|
|
void serializeOp(Serializer& serializer)
|
|
{
|
|
serializer(pressure_first_connection);
|
|
serializer(pressure);
|
|
serializer(rates);
|
|
serializer(phase_rates);
|
|
serializer(phase_mixing_rates);
|
|
serializer(solvent_rates);
|
|
serializer(polymer_rates);
|
|
serializer(brine_rates);
|
|
serializer(prod_index);
|
|
serializer(micp_rates);
|
|
serializer(cell_index);
|
|
serializer(connection_transmissibility_factor);
|
|
serializer(connection_d_factor);
|
|
serializer(connection_compaction_tmult);
|
|
serializer(satnum_id);
|
|
serializer(ecl_index);
|
|
serializer(water_throughput);
|
|
serializer(skin_pressure);
|
|
serializer(water_velocity);
|
|
serializer(filtrate_data);
|
|
}
|
|
|
|
bool operator==(const PerfData&) const;
|
|
|
|
// Note to maintainers: If you make changes to this list of data
|
|
// members, then please update the constructor, operator==(),
|
|
// serializationTestObject(), and serializeOp() accordingly. Moreover,
|
|
// if you're adding a new member representing a dynamically calculated
|
|
// result, e.g., a flow rate, then please update try_assign() as well.
|
|
|
|
double pressure_first_connection{};
|
|
std::vector<double> pressure{};
|
|
std::vector<double> rates{};
|
|
std::vector<double> phase_rates{};
|
|
std::vector<std::array<double,4>> phase_mixing_rates{};
|
|
std::vector<double> solvent_rates{};
|
|
std::vector<double> polymer_rates{};
|
|
std::vector<double> brine_rates{};
|
|
std::vector<double> prod_index{};
|
|
std::vector<double> micp_rates{};
|
|
std::vector<std::size_t> cell_index{};
|
|
std::vector<double> connection_transmissibility_factor{};
|
|
std::vector<double> connection_d_factor{};
|
|
std::vector<double> connection_compaction_tmult{};
|
|
std::vector<int> satnum_id{};
|
|
std::vector<std::size_t> ecl_index{};
|
|
|
|
// The water_throughput, skin_pressure and water_velocity variables are
|
|
// only used for injectors to check the injectivity.
|
|
std::vector<double> water_throughput{};
|
|
std::vector<double> skin_pressure{};
|
|
std::vector<double> water_velocity{};
|
|
|
|
ConnFiltrateData filtrate_data{};
|
|
};
|
|
|
|
} // namespace Opm
|
|
|
|
#endif // OPM_PERFDATA_HEADER_INCLUDED
|