mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
82 lines
4.2 KiB
C++
82 lines
4.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2018- 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 "RigContourMapCalculator.h"
|
|
#include "RigContourMapProjection.h"
|
|
#include "RigFemPart.h"
|
|
#include "RigFemResultAddress.h"
|
|
|
|
#include "cvfBoundingBox.h"
|
|
|
|
class RigGeoMechCaseData;
|
|
|
|
//==================================================================================================
|
|
///
|
|
///
|
|
//==================================================================================================
|
|
class RigGeoMechContourMapProjection : public RigContourMapProjection
|
|
{
|
|
public:
|
|
RigGeoMechContourMapProjection( RigGeoMechCaseData& caseData,
|
|
const RigContourMapGrid&,
|
|
bool limitToPorePressureRegions,
|
|
double paddingAroundPorePressureRegion );
|
|
|
|
void generateAndSaveResults( RigFemResultAddress resultAddress,
|
|
RigContourMapCalculator::ResultAggregationType resultAggregation,
|
|
int viewerStepIndex );
|
|
|
|
std::vector<double> generateResultsFromAddress( RigFemResultAddress resultAddress,
|
|
const std::vector<bool>& mapCellVisibility,
|
|
RigContourMapCalculator::ResultAggregationType resultAggregation,
|
|
int viewerStepIndex ) const;
|
|
|
|
static cvf::BoundingBox calculateExpandedPorBarBBox( RigGeoMechCaseData& caseData,
|
|
const std::string& resultComponentName,
|
|
int timeStep,
|
|
int frameIndex,
|
|
double padding );
|
|
|
|
std::vector<bool> getMapCellVisibility( int viewStepIndex, RigContourMapCalculator::ResultAggregationType resultAggregation ) override;
|
|
|
|
std::vector<bool> getMapCellVisibility( RigFemResultAddress resAddr,
|
|
int viewStepIndex,
|
|
RigContourMapCalculator::ResultAggregationType resultAggregation );
|
|
|
|
protected:
|
|
// GeoMech implementation specific data generation methods
|
|
std::vector<size_t> findIntersectingCells( const cvf::BoundingBox& bbox ) const override;
|
|
size_t kLayer( size_t globalCellIdx ) const override;
|
|
size_t kLayers() const override;
|
|
double calculateOverlapVolume( size_t globalCellIdx, const cvf::BoundingBox& bbox ) const override;
|
|
double calculateRayLengthInCell( size_t globalCellIdx, const cvf::Vec3d& highestPoint, const cvf::Vec3d& lowestPoint ) const override;
|
|
double getParameterWeightForCell( size_t globalCellIdx, const std::vector<double>& parameterWeights ) const override;
|
|
std::vector<double> gridCellValues( RigFemResultAddress resAddr, std::vector<float>& resultValues ) const;
|
|
|
|
protected:
|
|
RigGeoMechCaseData& m_caseData;
|
|
bool m_limitToPorePressureRegions;
|
|
double m_paddingAroundPorePressureRegion;
|
|
cvf::ref<RigFemPart> m_femPart;
|
|
cvf::cref<RigFemPartGrid> m_femPartGrid;
|
|
RigFemResultAddress m_currentResultAddr;
|
|
size_t m_kLayers;
|
|
};
|