2019-07-25 00:38:46 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2019- Equinor ASA
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "RifEclipseRftAddress.h"
|
|
|
|
#include "RifReaderRftInterface.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "cvfObject.h"
|
|
|
|
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QDir>
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//==================================================================================================
|
|
|
|
class RifReaderFmuRft : public RifReaderRftInterface, public cvf::Object
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
struct Observation
|
|
|
|
{
|
|
|
|
double utmx;
|
|
|
|
double utmy;
|
|
|
|
double mdrkb;
|
|
|
|
double tvdmsl;
|
|
|
|
|
|
|
|
double pressure;
|
|
|
|
double pressureError;
|
|
|
|
QString formation;
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
Observation();
|
2019-07-25 00:38:46 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
bool valid() const;
|
2019-07-25 00:38:46 -05:00
|
|
|
};
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
struct WellObservationSet
|
|
|
|
{
|
|
|
|
QDateTime dateTime;
|
2019-07-25 00:38:46 -05:00
|
|
|
int measurementIndex;
|
|
|
|
std::vector<Observation> observations;
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
WellObservationSet( const QDateTime& dateTime, int measurementIndex );
|
|
|
|
};
|
2019-07-25 00:38:46 -05:00
|
|
|
|
|
|
|
public:
|
2019-09-06 03:40:57 -05:00
|
|
|
RifReaderFmuRft( const QString& filePath );
|
2019-07-25 00:38:46 -05:00
|
|
|
~RifReaderFmuRft() = default;
|
2019-09-06 03:40:57 -05:00
|
|
|
|
|
|
|
static QStringList findSubDirectoriesWithFmuRftData( const QString& filePath );
|
|
|
|
static bool directoryContainsFmuRftData( const QString& filePath );
|
2019-07-25 00:38:46 -05:00
|
|
|
|
|
|
|
std::set<RifEclipseRftAddress> eclipseRftAddresses() override;
|
2019-09-06 03:40:57 -05:00
|
|
|
void values( const RifEclipseRftAddress& rftAddress, std::vector<double>* values ) override;
|
2019-07-25 00:38:46 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
std::set<QDateTime>
|
|
|
|
availableTimeSteps( const QString& wellName,
|
|
|
|
const std::set<RifEclipseRftAddress::RftWellLogChannelType> relevantChannels ) override;
|
|
|
|
std::set<QDateTime> availableTimeSteps( const QString& wellName ) override;
|
|
|
|
std::set<QDateTime> availableTimeSteps( const QString& wellName,
|
|
|
|
const RifEclipseRftAddress::RftWellLogChannelType& wellLogChannelName ) override;
|
2019-07-25 00:38:46 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
std::set<RifEclipseRftAddress::RftWellLogChannelType> availableWellLogChannels( const QString& wellName ) override;
|
2019-07-25 00:38:46 -05:00
|
|
|
std::set<QString> wellNames() override;
|
|
|
|
|
|
|
|
public:
|
|
|
|
void load();
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef std::pair<QString, WellObservationSet> WellObservationPair;
|
|
|
|
typedef std::map<QString, WellObservationSet> WellObservationMap;
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
WellObservationMap loadWellDates( QDir& dir, QString* errorMsg );
|
|
|
|
static bool readTxtFile( const QString& txtFileName, QString* errorMsg, WellObservationSet* wellObservationSet );
|
|
|
|
static bool readObsFile( const QString& obsFileName, QString* errorMsg, WellObservationSet* wellObservationSet );
|
2019-07-25 00:38:46 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
QString m_filePath;
|
|
|
|
WellObservationMap m_allWellObservations;
|
|
|
|
};
|