2020-05-13 23:39:55 -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
|
|
|
|
|
2020-07-02 06:53:39 -05:00
|
|
|
#include "RimFractureModelPropertyCurve.h"
|
2020-05-13 23:39:55 -05:00
|
|
|
#include "RimWellLogExtractionCurve.h"
|
|
|
|
|
|
|
|
#include "RiuQwtSymbol.h"
|
|
|
|
|
|
|
|
#include "cafPdmField.h"
|
|
|
|
#include "cafPdmPtrField.h"
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class RimWellPath;
|
|
|
|
class RimWellMeasurement;
|
|
|
|
class RimFractureModel;
|
2020-06-05 08:58:25 -05:00
|
|
|
class RimEclipseInputPropertyCollection;
|
|
|
|
class RigEclipseCaseData;
|
|
|
|
class RigResultAccessor;
|
2020-05-13 23:39:55 -05:00
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
///
|
|
|
|
//==================================================================================================
|
2020-07-02 06:53:39 -05:00
|
|
|
class RimFractureModelCurve : public RimWellLogExtractionCurve, public RimFractureModelPropertyCurve
|
2020-05-13 23:39:55 -05:00
|
|
|
{
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
|
|
|
|
public:
|
2020-06-05 08:58:25 -05:00
|
|
|
enum class MissingValueStrategy
|
|
|
|
{
|
|
|
|
DEFAULT_VALUE,
|
2020-07-10 02:18:45 -05:00
|
|
|
LINEAR_INTERPOLATION,
|
|
|
|
OTHER_CURVE_PROPERTY
|
2020-06-05 08:58:25 -05:00
|
|
|
};
|
|
|
|
|
2020-07-10 04:59:33 -05:00
|
|
|
enum class BurdenStrategy
|
|
|
|
{
|
|
|
|
DEFAULT_VALUE,
|
|
|
|
GRADIENT
|
|
|
|
};
|
|
|
|
|
2020-05-13 23:39:55 -05:00
|
|
|
RimFractureModelCurve();
|
|
|
|
~RimFractureModelCurve() override;
|
|
|
|
|
|
|
|
void setFractureModel( RimFractureModel* fractureModel );
|
|
|
|
|
|
|
|
void setEclipseResultCategory( RiaDefines::ResultCatType catType );
|
|
|
|
|
2020-06-05 08:58:25 -05:00
|
|
|
void setMissingValueStrategy( MissingValueStrategy strategy );
|
|
|
|
|
2020-07-10 04:59:33 -05:00
|
|
|
void setBurdenStrategy( BurdenStrategy strategy );
|
|
|
|
|
2020-07-02 06:53:39 -05:00
|
|
|
void setCurveProperty( RiaDefines::CurveProperty ) override;
|
|
|
|
RiaDefines::CurveProperty curveProperty() const override;
|
|
|
|
|
2020-05-13 23:39:55 -05:00
|
|
|
protected:
|
2020-07-08 00:08:09 -05:00
|
|
|
void fieldChangedByUi( const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue );
|
|
|
|
|
2020-05-13 23:39:55 -05:00
|
|
|
void performDataExtraction( bool* isUsingPseudoLength ) override;
|
|
|
|
|
2020-06-05 08:58:25 -05:00
|
|
|
static bool hasMissingValues( const std::vector<double>& values );
|
|
|
|
static void replaceMissingValues( std::vector<double>& values, double defaultValue );
|
|
|
|
static void replaceMissingValues( std::vector<double>& values, const std::vector<double>& replacementValues );
|
|
|
|
cvf::ref<RigResultAccessor> findMissingValuesAccessor( RigEclipseCaseData* caseData,
|
|
|
|
RimEclipseInputPropertyCollection* inputPropertyCollection,
|
|
|
|
int gridIndex,
|
|
|
|
int timeStepIndex,
|
|
|
|
RimEclipseResultDefinition* eclipseResultDefinition );
|
|
|
|
|
2020-07-10 04:59:33 -05:00
|
|
|
void addOverburden( std::vector<double>& tvDepthValues,
|
|
|
|
std::vector<double>& measuredDepthValues,
|
|
|
|
std::vector<double>& values ) const;
|
2020-06-30 00:18:07 -05:00
|
|
|
|
2020-07-10 04:59:33 -05:00
|
|
|
void addUnderburden( std::vector<double>& tvDepthValues,
|
|
|
|
std::vector<double>& measuredDepthValues,
|
|
|
|
std::vector<double>& values ) const;
|
2020-06-30 00:18:07 -05:00
|
|
|
|
2020-07-02 06:53:39 -05:00
|
|
|
caf::PdmPtrField<RimFractureModel*> m_fractureModel;
|
|
|
|
caf::PdmField<caf::AppEnum<MissingValueStrategy>> m_missingValueStrategy;
|
2020-07-10 04:59:33 -05:00
|
|
|
caf::PdmField<caf::AppEnum<BurdenStrategy>> m_burdenStrategy;
|
2020-07-02 06:53:39 -05:00
|
|
|
caf::PdmField<caf::AppEnum<RiaDefines::CurveProperty>> m_curveProperty;
|
2020-05-13 23:39:55 -05:00
|
|
|
};
|