80 lines
2.2 KiB
C++
80 lines
2.2 KiB
C++
/*
|
|
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/>.
|
|
*/
|
|
|
|
#ifndef OPM_IO_ERSM_HPP
|
|
#define OPM_IO_ERSM_HPP
|
|
|
|
#include <deque>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <variant>
|
|
#include <vector>
|
|
|
|
#include <opm/io/eclipse/SummaryNode.hpp>
|
|
#include <opm/common/utility/TimeService.hpp>
|
|
|
|
namespace Opm { namespace EclIO {
|
|
|
|
/*
|
|
Small class to load RSM files. The RSM file is a text based version of the
|
|
information found in the summary file. The format seems quite fragile - with
|
|
significant whitespace all over the place.The ambition of this ERsm clas is to
|
|
be able to do regression testing of the RSM files we export from the ESmry
|
|
class - it is not meant to be a rock-solid-works-in-every-lunar phase RSM
|
|
loader.
|
|
*/
|
|
class ESmry;
|
|
|
|
class ERsm
|
|
{
|
|
|
|
struct Vector{
|
|
SummaryNode header;
|
|
std::vector<double> data;
|
|
|
|
Vector(SummaryNode header_, std::size_t size_advice) :
|
|
header(std::move(header_))
|
|
{
|
|
this->data.reserve(size_advice);
|
|
}
|
|
};
|
|
|
|
|
|
public:
|
|
explicit ERsm(const std::string& fname);
|
|
|
|
const std::vector<TimeStampUTC>& dates() const;
|
|
const std::vector<double>& days() const;
|
|
bool has_dates() const;
|
|
|
|
const std::vector<double>& get(const std::string& key) const;
|
|
bool has(const std::string& key) const;
|
|
private:
|
|
void load_block(std::deque<std::string>& lines , std::size_t& vector_length);
|
|
|
|
std::unordered_map<std::string, Vector> vectors;
|
|
std::variant<std::vector<double>, std::vector<TimeStampUTC>> time;
|
|
};
|
|
|
|
bool cmp(const ESmry& esmr, const ERsm& ersm);
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|