/*
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 .
*/
#ifndef OPM_TRACER_CONFIG_HPP
#define OPM_TRACER_CONFIG_HPP
#include
#include
namespace Opm {
class Deck;
class UnitSystem;
class TracerConfig {
public:
struct TracerEntry {
std::string name;
Phase phase = Phase::OIL;
std::vector concentration;
TracerVdTable tvdpf;
TracerEntry() = default;
TracerEntry(const std::string& name_, Phase phase_, std::vector 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
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::const_iterator begin() const;
const std::vector::const_iterator end() const;
template
void serializeOp(Serializer& serializer)
{
serializer.vector(tracers);
}
bool operator==(const TracerConfig& data) const;
private:
std::vector tracers;
};
}
#endif