diff --git a/ApplicationLibCode/ProjectDataModel/StimPlanModel/RimStimPlanModel.cpp b/ApplicationLibCode/ProjectDataModel/StimPlanModel/RimStimPlanModel.cpp index 0894928f96..71f38f36c7 100644 --- a/ApplicationLibCode/ProjectDataModel/StimPlanModel/RimStimPlanModel.cpp +++ b/ApplicationLibCode/ProjectDataModel/StimPlanModel/RimStimPlanModel.cpp @@ -1751,6 +1751,24 @@ std::deque }; } + else if ( curveProperty == RiaDefines::CurveProperty::POROSITY || + curveProperty == RiaDefines::CurveProperty::POROSITY_UNSCALED || + curveProperty == RiaDefines::CurveProperty::PERMEABILITY_X || + curveProperty == RiaDefines::CurveProperty::PERMEABILITY_Z ) + { + QString resultName = eclipseResultVariable( curveProperty ); + return { + RimExtractionConfiguration( QString( "%1_1" ).arg( resultName ), + RiaDefines::ResultCatType::INPUT_PROPERTY, + RimExtractionConfiguration::EclipseCaseType::STATIC_CASE ), + RimExtractionConfiguration( resultName, + RiaDefines::ResultCatType::INPUT_PROPERTY, + RimExtractionConfiguration::EclipseCaseType::STATIC_CASE ), + RimExtractionConfiguration( resultName, + RiaDefines::ResultCatType::STATIC_NATIVE, + RimExtractionConfiguration::EclipseCaseType::DYNAMIC_CASE ), + }; + } return std::deque(); }