Files
opm-common/opm/parser/eclipse/EclipseState/TracerConfig.hpp
Joakim Hove 9411af4dfc Implement TracerConfig in EclipseState
Co-authored-by: Arne Morten Kvarving <arne.morten.kvarving@sintef.no>
2020-03-25 07:53:08 +01:00

94 lines
2.6 KiB
C++

/*
Copyright (C) 2020 Equinor
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_TRACER_CONFIG_HPP
#define OPM_TRACER_CONFIG_HPP
#include <opm/parser/eclipse/EclipseState/Runspec.hpp>
#include <opm/parser/eclipse/EclipseState/Tables/TracerVdTable.hpp>
namespace Opm {
class Deck;
class UnitSystem;
class TracerConfig {
public:
struct TracerEntry {
std::string name;
Phase phase = Phase::OIL;
std::vector<double> concentration;
TracerVdTable tvdpf;
TracerEntry() = default;
TracerEntry(const std::string& name_, Phase phase_, std::vector<double> concentration_)
: name(name_)
, phase(phase_)
, concentration(std::move(concentration_))
{}
TracerEntry(const std::string& name_, Phase phase_, TracerVdTable tvdpf_)
: name(name_)
, phase(phase_)
, tvdpf(std::move(tvdpf_))
{}
bool operator==(const TracerEntry& data) const {
return this->name == data.name &&
this->phase == data.phase &&
this->concentration == data.concentration &&
this->tvdpf == data.tvdpf;
}
template<class Serializer>
void serializeOp(Serializer& serializer)
{
serializer(name);
serializer(phase);
serializer(concentration);
tvdpf.serializeOp(serializer);
}
};
TracerConfig() = default;
TracerConfig(const UnitSystem& unit_system, const Deck& deck);
static TracerConfig serializeObject();
size_t size() const;
const std::vector<TracerEntry>::const_iterator begin() const;
const std::vector<TracerEntry>::const_iterator end() const;
template<class Serializer>
void serializeOp(Serializer& serializer)
{
serializer.vector(tracers);
}
bool operator==(const TracerConfig& data) const;
private:
std::vector<TracerEntry> tracers;
};
}
#endif