opm-common/opm/io/eclipse/ExtESmry.hpp
Torbjørn Skille 39c1a68f37 Fix bug in ExtESmry
Start date in ESMRY file (format) have 7 elements, last element is milliseconds.
2022-09-27 15:38:24 +02:00

114 lines
3.7 KiB
C++

/*
Copyright 2019 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_ExtESmry_HPP
#define OPM_IO_ExtESmry_HPP
#include <chrono>
#include <filesystem>
#include <string>
#include <unordered_map>
#include <vector>
#include <map>
#include <stdint.h>
#include <opm/common/utility/TimeService.hpp>
namespace Opm { namespace EclIO {
using ArrSourceEntry = std::tuple<std::string, std::string, int, uint64_t>;
using TimeStepEntry = std::tuple<int, int, uint64_t>;
using RstEntry = std::tuple<std::string, int>;
// start, rstart + rstnum, keycheck, units, rstep, tstep
using ExtSmryHeadType = std::tuple<time_point, RstEntry, std::vector<std::string>, std::vector<std::string>,
std::vector<int>, std::vector<int>>;
class ExtESmry
{
public:
// input is esmry, only binary supported.
explicit ExtESmry(const std::string& filename, bool loadBaseRunData=false);
const std::vector<float>& get(const std::string& name);
std::vector<float> get_at_rstep(const std::string& name);
std::string& get_unit(const std::string& name);
void loadData();
void loadData(const std::vector<std::string>& stringVect);
time_point startdate() const { return m_startdat; }
std::vector<int> start_v() const { return m_start_vect; }
bool hasKey(const std::string& key) const;
size_t numberOfTimeSteps() const { return m_nTstep; }
size_t numberOfVectors() const { return m_nVect; }
const std::vector<std::string>& keywordList() const { return m_keyword;}
std::vector<std::string> keywordList(const std::string& pattern) const;
std::vector<time_point> dates();
bool all_steps_available();
std::string rootname() { return m_inputFileName.stem(); }
std::tuple<double, double> get_io_elapsed() const;
private:
std::filesystem::path m_inputFileName;
std::vector<std::filesystem::path> m_esmry_files;
bool m_loadBaseRun;
std::vector<std::map<std::string, int>> m_keyword_index;
std::vector<std::tuple<int,int>> m_tstep_range;
std::vector<std::string> m_keyword;
std::vector<int> m_rstep;
std::vector<int> m_tstep;
std::vector<std::vector<int>> m_rstep_v;
std::vector<std::vector<int>> m_tstep_v;
std::vector<std::vector<float>> m_vectorData;
std::vector<bool> m_vectorLoaded;
std::unordered_map<std::string, std::string> kwunits;
size_t m_nVect;
std::vector<size_t> m_nTstep_v;
size_t m_nTstep;
std::vector<int> m_seqIndex;
std::vector<uint64_t> m_rstep_offset;
time_point m_startdat;
std::vector<int> m_start_vect;
double m_io_opening;
double m_io_loading;
bool open_esmry(const std::filesystem::path& inputFileName, ExtSmryHeadType& ext_smry_head, uint64_t& rstep_offset);
bool load_esmry(const std::vector<std::string>& stringVect, const std::vector<int>& keyIndexVect,
const std::vector<int>& loadKeyIndex, int ind, int to_ind );
void updatePathAndRootName(std::filesystem::path& dir, std::filesystem::path& rootN);
};
}} // namespace Opm::EclIO
#endif // OPM_IO_ExtESmry_HPP