mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
102 lines
4.5 KiB
C++
102 lines
4.5 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2023 - 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 "RimFaultReactivationDataAccessorStress.h"
|
|
#include "RimFaultReactivationEnums.h"
|
|
|
|
#include "RigFemResultAddress.h"
|
|
|
|
#include <vector>
|
|
|
|
#include "cafPdmField.h"
|
|
#include "cafPdmPtrField.h"
|
|
|
|
#include "cvfObject.h"
|
|
|
|
class RigFemPart;
|
|
class RigFemPartResultsCollection;
|
|
class RigFemScalarResultFrames;
|
|
class RigGeoMechCaseData;
|
|
class RigGriddedPart3d;
|
|
class RimGeoMechCase;
|
|
class RimWellIADataAccess;
|
|
class RimModeledWellPath;
|
|
class RigWellPath;
|
|
class RigFemPartCollection;
|
|
class RigGeoMechWellLogExtractor;
|
|
|
|
//==================================================================================================
|
|
///
|
|
///
|
|
//==================================================================================================
|
|
class RimFaultReactivationDataAccessorStressGeoMech : public RimFaultReactivationDataAccessorStress
|
|
{
|
|
public:
|
|
RimFaultReactivationDataAccessorStressGeoMech( RimGeoMechCase* geoMechCase,
|
|
RimFaultReactivation::Property property,
|
|
double gradient,
|
|
double seabedDepth );
|
|
~RimFaultReactivationDataAccessorStressGeoMech() override;
|
|
|
|
private:
|
|
void updateResultAccessor() override;
|
|
|
|
bool isDataAvailable() const override;
|
|
|
|
double extractStressValue( StressType stressType, const cvf::Vec3d& position, RimFaultReactivation::GridPart gridPart ) const override;
|
|
|
|
std::pair<double, cvf::Vec3d> calculatePorBar( const cvf::Vec3d& position,
|
|
RimFaultReactivation::ElementSets elementSet,
|
|
double gradient,
|
|
RimFaultReactivation::GridPart gridPart ) const override;
|
|
|
|
bool isPositionValid( const cvf::Vec3d& position,
|
|
const cvf::Vec3d& topPosition,
|
|
const cvf::Vec3d& bottomPosition,
|
|
RimFaultReactivation::GridPart gridPart ) const override;
|
|
|
|
static RigFemResultAddress getResultAddress( const std::string& fieldName, const std::string& componentName );
|
|
|
|
double interpolatedResultValue( RimWellIADataAccess& iaDataAccess,
|
|
const RigFemPart* femPart,
|
|
const cvf::Vec3d& position,
|
|
const std::vector<float>& scalarResults ) const;
|
|
|
|
std::pair<double, cvf::Vec3d> calculatePorBar( const cvf::Vec3d& position,
|
|
RimFaultReactivation::ElementSets elementSet,
|
|
double gradient,
|
|
RimFaultReactivation::GridPart gridPart,
|
|
int timeStepIndex,
|
|
int frameIndex ) const;
|
|
|
|
RigFemScalarResultFrames* dataFrames( StressType stressType ) const;
|
|
|
|
RimGeoMechCase* m_geoMechCase;
|
|
RigGeoMechCaseData* m_geoMechCaseData;
|
|
RigFemScalarResultFrames* m_s11Frames;
|
|
RigFemScalarResultFrames* m_s22Frames;
|
|
RigFemScalarResultFrames* m_s33Frames;
|
|
const RigFemScalarResultFrames* m_porBarFrames;
|
|
const RigFemPart* m_femPart;
|
|
|
|
std::map<RimFaultReactivation::GridPart, cvf::ref<RigWellPath>> m_wellPaths;
|
|
std::map<RimFaultReactivation::GridPart, cvf::ref<RigGeoMechWellLogExtractor>> m_extractors;
|
|
};
|