This commit adds a level of indirection to the existing group-level data (active controls and guiderates), and adds a new 'NodeData' level to the 'data::' protocol for transporting values from the simulator to the output layer. Update all call sites and users accordingly.
225 lines
6.7 KiB
C++
225 lines
6.7 KiB
C++
/*
|
|
Copyright 2016 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_OUTPUT_GROUPS_HPP
|
|
#define OPM_OUTPUT_GROUPS_HPP
|
|
|
|
#include <cstddef>
|
|
#include <map>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include <opm/output/data/GuideRateValue.hpp>
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Group/Group.hpp>
|
|
|
|
namespace Opm { namespace data {
|
|
|
|
struct GroupConstraints {
|
|
Opm::Group::ProductionCMode currentProdConstraint;
|
|
Opm::Group::InjectionCMode currentGasInjectionConstraint;
|
|
Opm::Group::InjectionCMode currentWaterInjectionConstraint;
|
|
|
|
template <class MessageBufferType>
|
|
void write(MessageBufferType& buffer) const;
|
|
|
|
template <class MessageBufferType>
|
|
void read(MessageBufferType& buffer);
|
|
|
|
bool operator==(const GroupConstraints& other) const
|
|
{
|
|
return this->currentProdConstraint == other.currentProdConstraint &&
|
|
this->currentGasInjectionConstraint == other.currentGasInjectionConstraint &&
|
|
this->currentWaterInjectionConstraint == other.currentWaterInjectionConstraint;
|
|
}
|
|
|
|
inline GroupConstraints& set(Opm::Group::ProductionCMode cpc,
|
|
Opm::Group::InjectionCMode cgic,
|
|
Opm::Group::InjectionCMode cwic);
|
|
};
|
|
|
|
struct GroupGuideRates {
|
|
GuideRateValue production{};
|
|
GuideRateValue injection{};
|
|
|
|
template <class MessageBufferType>
|
|
void write(MessageBufferType& buffer) const
|
|
{
|
|
this->production.write(buffer);
|
|
this->injection .write(buffer);
|
|
}
|
|
|
|
template <class MessageBufferType>
|
|
void read(MessageBufferType& buffer)
|
|
{
|
|
this->production.read(buffer);
|
|
this->injection .read(buffer);
|
|
}
|
|
|
|
bool operator==(const GroupGuideRates& other) const
|
|
{
|
|
return this->production == other.production
|
|
&& this->injection == other.injection;
|
|
}
|
|
};
|
|
|
|
struct GroupData {
|
|
GroupConstraints currentControl;
|
|
GroupGuideRates guideRates{};
|
|
|
|
template <class MessageBufferType>
|
|
void write(MessageBufferType& buffer) const
|
|
{
|
|
this->currentControl.write(buffer);
|
|
this->guideRates .write(buffer);
|
|
}
|
|
|
|
template <class MessageBufferType>
|
|
void read(MessageBufferType& buffer)
|
|
{
|
|
this->currentControl.read(buffer);
|
|
this->guideRates .read(buffer);
|
|
}
|
|
|
|
bool operator==(const GroupData& other) const
|
|
{
|
|
return this->currentControl == other.currentControl
|
|
&& this->guideRates == other.guideRates;
|
|
}
|
|
};
|
|
|
|
struct NodeData {
|
|
double pressure { 0.0 };
|
|
|
|
template <class MessageBufferType>
|
|
void write(MessageBufferType& buffer) const
|
|
{
|
|
buffer.write(this->pressure);
|
|
}
|
|
|
|
template <class MessageBufferType>
|
|
void read(MessageBufferType& buffer)
|
|
{
|
|
buffer.read(this->pressure);
|
|
}
|
|
|
|
bool operator==(const NodeData& other) const
|
|
{
|
|
return this->pressure == other.pressure;
|
|
}
|
|
};
|
|
|
|
class GroupAndNetworkValues {
|
|
public:
|
|
std::map<std::string, GroupData> groupData {};
|
|
std::map<std::string, NodeData> nodeData {};
|
|
|
|
template <class MessageBufferType>
|
|
void write(MessageBufferType& buffer) const
|
|
{
|
|
this->writeMap(this->groupData, buffer);
|
|
this->writeMap(this->nodeData, buffer);
|
|
}
|
|
|
|
template <class MessageBufferType>
|
|
void read(MessageBufferType& buffer)
|
|
{
|
|
this->readMap(buffer, this->groupData);
|
|
this->readMap(buffer, this->nodeData);
|
|
}
|
|
|
|
bool operator==(const GroupAndNetworkValues& other) const
|
|
{
|
|
return (this->groupData == other.groupData)
|
|
&& (this->nodeData == other.nodeData);
|
|
}
|
|
|
|
void clear()
|
|
{
|
|
this->groupData.clear();
|
|
this->nodeData.clear();
|
|
}
|
|
|
|
private:
|
|
template <class MessageBufferType, class ValueType>
|
|
void writeMap(const std::map<std::string, ValueType>& map,
|
|
MessageBufferType& buffer) const
|
|
{
|
|
const unsigned int size = map.size();
|
|
buffer.write(size);
|
|
|
|
for (const auto& [name, elm] : map) {
|
|
buffer.write(name);
|
|
elm .write(buffer);
|
|
}
|
|
}
|
|
|
|
template <class MessageBufferType, class ValueType>
|
|
void readMap(MessageBufferType& buffer,
|
|
std::map<std::string, ValueType>& map)
|
|
{
|
|
unsigned int size;
|
|
buffer.read(size);
|
|
|
|
for (std::size_t i = 0; i < size; ++i) {
|
|
std::string name;
|
|
buffer.read(name);
|
|
|
|
auto elm = ValueType{};
|
|
elm.read(buffer);
|
|
|
|
map.emplace(name, std::move(elm));
|
|
}
|
|
}
|
|
};
|
|
|
|
/* IMPLEMENTATIONS */
|
|
|
|
template <class MessageBufferType>
|
|
void GroupConstraints::write(MessageBufferType& buffer) const {
|
|
buffer.write(this->currentProdConstraint);
|
|
buffer.write(this->currentGasInjectionConstraint);
|
|
buffer.write(this->currentWaterInjectionConstraint);
|
|
}
|
|
|
|
template <class MessageBufferType>
|
|
void GroupConstraints::read(MessageBufferType& buffer) {
|
|
buffer.read(this->currentProdConstraint);
|
|
buffer.read(this->currentGasInjectionConstraint);
|
|
buffer.read(this->currentWaterInjectionConstraint);
|
|
}
|
|
|
|
inline GroupConstraints&
|
|
GroupConstraints::set(Opm::Group::ProductionCMode cpc,
|
|
Opm::Group::InjectionCMode cgic,
|
|
Opm::Group::InjectionCMode cwic)
|
|
{
|
|
this->currentGasInjectionConstraint = cgic;
|
|
this->currentWaterInjectionConstraint = cwic;
|
|
this->currentProdConstraint = cpc;
|
|
|
|
return *this;
|
|
}
|
|
|
|
}} // Opm::data
|
|
|
|
#endif //OPM_OUTPUT_GROUPS_HPP
|