///////////////////////////////////////////////////////////////////////////////// // // 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 // 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 generateResultsFromAddress( RigFemResultAddress resultAddress, const std::vector& 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 getMapCellVisibility( int viewStepIndex, RigContourMapCalculator::ResultAggregationType resultAggregation ) override; std::vector getMapCellVisibility( RigFemResultAddress resAddr, int viewStepIndex, RigContourMapCalculator::ResultAggregationType resultAggregation ); protected: // GeoMech implementation specific data generation methods std::vector 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& parameterWeights ) const override; std::vector gridCellValues( RigFemResultAddress resAddr, std::vector& resultValues ) const; protected: RigGeoMechCaseData& m_caseData; bool m_limitToPorePressureRegions; double m_paddingAroundPorePressureRegion; cvf::ref m_femPart; cvf::cref m_femPartGrid; RigFemResultAddress m_currentResultAddr; size_t m_kLayers; };