2021-03-24 09:06:42 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2021- 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
|
|
|
|
|
2021-03-24 13:42:00 -05:00
|
|
|
#include <memory>
|
2021-03-24 09:06:42 -05:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class QString;
|
|
|
|
class QTextStream;
|
|
|
|
|
|
|
|
class RigSlice2D;
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
//
|
|
|
|
//==================================================================================================
|
|
|
|
class RifFractureGroupStatisticsExporter
|
|
|
|
{
|
|
|
|
public:
|
2021-03-24 13:42:00 -05:00
|
|
|
static bool writeAsStimPlanXml( const std::vector<std::shared_ptr<RigSlice2D>>& statistics,
|
|
|
|
const std::vector<QString>& properties,
|
|
|
|
const QString& filePath,
|
|
|
|
const std::vector<double>& gridXs,
|
|
|
|
const std::vector<double>& gridYs,
|
|
|
|
double time );
|
2021-03-24 09:06:42 -05:00
|
|
|
|
|
|
|
private:
|
|
|
|
static void appendHeaderToStream( QTextStream& stream );
|
|
|
|
static void appendGridDimensionsToStream( QTextStream& stream,
|
|
|
|
const std::vector<double>& gridXs,
|
|
|
|
const std::vector<double>& gridYs );
|
2021-03-24 13:42:00 -05:00
|
|
|
static void appendPropertiesToStream( QTextStream& stream,
|
|
|
|
const std::vector<std::shared_ptr<RigSlice2D>>& statistics,
|
|
|
|
const std::vector<QString>& properties,
|
|
|
|
const std::vector<double>& gridYs,
|
|
|
|
double time );
|
2021-03-24 09:06:42 -05:00
|
|
|
static void appendFooterToStream( QTextStream& stream );
|
|
|
|
};
|