2016-04-12 04:32:28 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) Statoil ASA
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2016-04-12 04:32:28 -05:00
|
|
|
// ResInsight 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2016-04-12 04:32:28 -05:00
|
|
|
// ResInsight 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2016-04-12 04:32:28 -05:00
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2021-04-27 08:08:48 -05:00
|
|
|
#include "RiaDefines.h"
|
2016-05-04 07:11:04 -05:00
|
|
|
|
2021-04-27 08:08:48 -05:00
|
|
|
#include "ert/ecl/ecl_sum.hpp"
|
|
|
|
|
|
|
|
#include <QString>
|
2024-04-16 07:22:15 -05:00
|
|
|
#include <QStringList>
|
2021-04-27 08:08:48 -05:00
|
|
|
|
2016-04-12 04:32:28 -05:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2017-09-20 02:30:32 -05:00
|
|
|
class RifSummaryReaderInterface;
|
2021-04-27 08:08:48 -05:00
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==================================================================================================
|
|
|
|
class RifRestartFileInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RifRestartFileInfo()
|
|
|
|
: startDate( 0 )
|
|
|
|
, endDate( 0 )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
RifRestartFileInfo( const QString& _fileName, time_t _startDate, time_t _endDate )
|
|
|
|
: fileName( _fileName )
|
|
|
|
, startDate( _startDate )
|
|
|
|
, endDate( _endDate )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
bool valid() { return !fileName.isEmpty(); }
|
|
|
|
|
|
|
|
QString fileName;
|
|
|
|
time_t startDate;
|
|
|
|
time_t endDate;
|
|
|
|
};
|
2016-04-12 04:32:28 -05:00
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
//
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2016-04-12 04:32:28 -05:00
|
|
|
//
|
|
|
|
//==================================================================================================
|
|
|
|
class RifEclipseSummaryTools
|
|
|
|
{
|
|
|
|
public:
|
2019-09-06 03:40:57 -05:00
|
|
|
static void findSummaryHeaderFile( const QString& inputFile, QString* headerFile, bool* isFormatted );
|
|
|
|
static QString findGridCaseFileFromSummaryHeaderFile( const QString& summaryHeaderFile );
|
2016-04-12 04:32:28 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
static void dumpMetaData( RifSummaryReaderInterface* readerEclipseSummary );
|
2016-04-12 04:32:28 -05:00
|
|
|
|
2021-04-27 08:08:48 -05:00
|
|
|
static std::vector<RifRestartFileInfo> getRestartFiles( const QString& headerFileName, std::vector<QString>& warnings );
|
|
|
|
static RifRestartFileInfo getFileInfo( const QString& headerFileName );
|
|
|
|
|
|
|
|
static void closeEclSum( ecl_sum_type* ecl_sum );
|
|
|
|
static ecl_sum_type* openEclSum( const QString& inHeaderFileName, bool includeRestartFiles );
|
|
|
|
static RiaDefines::EclipseUnitSystem readUnitSystem( ecl_sum_type* ecl_sum );
|
|
|
|
static std::vector<time_t> getTimeSteps( ecl_sum_type* ecl_sum );
|
|
|
|
|
2016-04-12 04:32:28 -05:00
|
|
|
private:
|
2021-04-27 08:08:48 -05:00
|
|
|
static void findSummaryFiles( const QString& inputFile, QString* headerFile, QStringList* dataFiles );
|
|
|
|
static RifRestartFileInfo getRestartFile( const QString& headerFileName );
|
|
|
|
|
2023-02-26 03:48:40 -06:00
|
|
|
static void findSummaryHeaderFileInfo( const QString& inputFile, QString* headerFile, QString* path, QString* base, bool* isFormatted );
|
2016-04-12 04:32:28 -05:00
|
|
|
};
|