opm-common/opm/io/eclipse/SummaryNode.hpp

80 lines
2.0 KiB
C++
Raw Permalink Normal View History

/*
Copyright 2020 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/>.
*/
2020-03-27 02:07:52 -05:00
#ifndef OPM_IO_SUMMARYNODE_HPP
#define OPM_IO_SUMMARYNODE_HPP
#include <functional>
2020-04-01 03:30:10 -05:00
#include <optional>
#include <string>
2020-03-27 02:07:52 -05:00
#include <unordered_set>
namespace Opm { namespace EclIO {
struct SummaryNode {
enum class Category {
Well,
Group,
Field,
Region,
Block,
Connection,
Segment,
Aquifer,
Node,
Miscellaneous,
};
enum class Type {
Rate,
Total,
Ratio,
Pressure,
Count,
Mode,
Undefined,
};
std::string keyword;
Category category;
Type type;
std::string wgname;
int number;
2020-08-27 00:58:15 -05:00
std::string fip_region;
constexpr static int default_number { std::numeric_limits<int>::min() };
std::string unique_key() const;
2020-03-27 02:07:52 -05:00
using number_renderer = std::function<std::string(const SummaryNode&)>;
std::string unique_key(number_renderer) const;
bool is_user_defined() const;
2020-03-27 02:07:52 -05:00
static Category category_from_keyword(const std::string&, const std::unordered_set<std::string> &miscellaneous_keywords = {});
2020-04-01 03:30:10 -05:00
std::optional<std::string> display_name() const;
std::optional<std::string> display_number() const;
std::optional<std::string> display_number(number_renderer) const;
};
}} // namespace Opm::EclIO
2020-03-27 02:07:52 -05:00
#endif // OPM_IO_SUMMARYNODE_HPP