2017-05-16 02:43:41 -05:00
/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2017- Statoil 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.
//
/////////////////////////////////////////////////////////////////////////////////
2017-05-30 07:37:51 -05:00
# include "RicExportCompletionDataSettingsUi.h"
2017-05-16 02:43:41 -05:00
2017-06-14 08:30:50 -05:00
namespace caf
{
template < >
void RicExportCompletionDataSettingsUi : : ExportSplitType : : setUp ( )
{
addItem ( RicExportCompletionDataSettingsUi : : UNIFIED_FILE , " UNIFIED_FILE " , " Unified File " ) ;
addItem ( RicExportCompletionDataSettingsUi : : SPLIT_ON_WELL , " SPLIT_ON_WELL " , " Split on Well " ) ;
addItem ( RicExportCompletionDataSettingsUi : : SPLIT_ON_WELL_AND_COMPLETION_TYPE , " SPLIT_ON_WELL_AND_COMPLETION_TYPE " , " Split on Well and Completion Type " ) ;
2018-04-30 01:15:55 -05:00
setDefault ( RicExportCompletionDataSettingsUi : : SPLIT_ON_WELL_AND_COMPLETION_TYPE ) ;
2017-06-14 08:30:50 -05:00
}
2017-06-15 04:37:00 -05:00
2017-06-21 03:58:02 -05:00
template < >
void RicExportCompletionDataSettingsUi : : CompdatExportType : : setUp ( )
{
2017-06-21 08:54:18 -05:00
addItem ( RicExportCompletionDataSettingsUi : : TRANSMISSIBILITIES , " TRANSMISSIBILITIES " , " Calculated Transmissibilities " ) ;
2017-06-23 08:45:22 -05:00
addItem ( RicExportCompletionDataSettingsUi : : WPIMULT_AND_DEFAULT_CONNECTION_FACTORS , " WPIMULT_AND_DEFAULT_CONNECTION_FACTORS " , " Default Connection Factors and WPIMULT (Fractures Not Supported) " ) ;
2017-06-21 03:58:02 -05:00
setDefault ( RicExportCompletionDataSettingsUi : : TRANSMISSIBILITIES ) ;
}
2018-04-13 05:13:27 -05:00
template < >
void RicExportCompletionDataSettingsUi : : CombinationModeType : : setUp ( )
{
addItem ( RicExportCompletionDataSettingsUi : : INDIVIDUALLY , " INDIVIDUALLY " , " Individually " ) ;
addItem ( RicExportCompletionDataSettingsUi : : COMBINED , " COMBINED " , " Combined " ) ;
setDefault ( RicExportCompletionDataSettingsUi : : INDIVIDUALLY ) ;
}
2017-06-14 08:30:50 -05:00
}
2017-05-30 07:37:51 -05:00
CAF_PDM_SOURCE_INIT ( RicExportCompletionDataSettingsUi , " RicExportCompletionDataSettingsUi " ) ;
2017-05-16 02:43:41 -05:00
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
2017-05-30 07:37:51 -05:00
RicExportCompletionDataSettingsUi : : RicExportCompletionDataSettingsUi ( )
2017-05-16 02:43:41 -05:00
{
CAF_PDM_InitObject ( " RimExportCompletionDataSettings " , " " , " " , " " ) ;
2017-06-14 08:30:50 -05:00
CAF_PDM_InitFieldNoDefault ( & fileSplit , " FileSplit " , " File Split " , " " , " " , " " ) ;
2017-12-22 07:42:56 -06:00
2017-06-21 08:54:18 -05:00
CAF_PDM_InitFieldNoDefault ( & compdatExport , " compdatExport " , " Export " , " " , " " , " " ) ;
2017-06-14 08:30:50 -05:00
2018-04-06 05:56:48 -05:00
CAF_PDM_InitField ( & timeStep , " TimeStepIndex " , 0 , " Time Step " , " " , " " , " " ) ;
2018-03-14 03:35:48 -05:00
2017-09-20 08:24:29 -05:00
CAF_PDM_InitField ( & useLateralNTG , " UseLateralNTG " , false , " Use NTG Horizontally " , " " , " " , " " ) ;
2017-05-30 08:42:05 -05:00
2018-04-06 05:56:48 -05:00
CAF_PDM_InitField ( & includePerforations , " IncludePerforations " , true , " Perforations " , " " , " " , " " ) ;
CAF_PDM_InitField ( & includeFishbones , " IncludeFishbones " , true , " Fishbones " , " " , " " , " " ) ;
CAF_PDM_InitField ( & includeFractures , " IncludeFractures " , true , " Fractures " , " " , " " , " " ) ;
2017-05-29 06:13:25 -05:00
2018-04-06 05:56:48 -05:00
CAF_PDM_InitField ( & excludeMainBoreForFishbones , " ExcludeMainBoreForFishbones " , false , " Exclude Main Bore Transmissibility " , " " , " " , " " ) ;
2018-04-13 05:13:27 -05:00
CAF_PDM_InitFieldNoDefault ( & m_reportCompletionTypesSeparately , " ReportCompletionTypesSeparately " , " Export Completion Types " , " " , " " , " " ) ;
2017-09-07 13:43:01 -05:00
m_displayForSimWell = true ;
2018-04-09 04:23:14 -05:00
m_fracturesEnabled = true ;
m_perforationsEnabled = true ;
m_fishbonesEnabled = true ;
2017-05-30 08:42:05 -05:00
}
2017-06-12 05:03:42 -05:00
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicExportCompletionDataSettingsUi : : showForSimWells ( )
{
m_displayForSimWell = true ;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicExportCompletionDataSettingsUi : : showForWellPath ( )
{
m_displayForSimWell = false ;
}
2018-04-09 04:23:14 -05:00
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
2018-04-13 05:13:27 -05:00
void RicExportCompletionDataSettingsUi : : setCombinationMode ( CombinationMode combinationMode )
{
m_reportCompletionTypesSeparately = combinationMode ;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicExportCompletionDataSettingsUi : : showFractureInUi ( bool enable )
2018-04-09 04:23:14 -05:00
{
m_fracturesEnabled = enable ;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
2018-04-13 05:13:27 -05:00
void RicExportCompletionDataSettingsUi : : showPerforationsInUi ( bool enable )
2018-04-09 04:23:14 -05:00
{
m_perforationsEnabled = enable ;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
2018-04-13 05:13:27 -05:00
void RicExportCompletionDataSettingsUi : : showFishbonesInUi ( bool enable )
2018-04-09 04:23:14 -05:00
{
m_fishbonesEnabled = enable ;
}
2018-04-13 05:13:27 -05:00
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
bool RicExportCompletionDataSettingsUi : : reportCompletionsTypesIndividually ( ) const
{
return m_reportCompletionTypesSeparately ( ) = = INDIVIDUALLY ;
}
2017-08-14 15:30:22 -05:00
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicExportCompletionDataSettingsUi : : fieldChangedByUi ( const caf : : PdmFieldHandle * changedField , const QVariant & oldValue , const QVariant & newValue )
{
if ( changedField = = & compdatExport )
{
if ( compdatExport = = WPIMULT_AND_DEFAULT_CONNECTION_FACTORS )
{
includeFractures = false ;
includeFractures . uiCapability ( ) - > setUiReadOnly ( true ) ;
}
else if ( compdatExport = = TRANSMISSIBILITIES )
{
includeFractures = true ;
includeFractures . uiCapability ( ) - > setUiReadOnly ( false ) ;
}
}
}
2017-05-30 08:42:05 -05:00
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
QList < caf : : PdmOptionItemInfo > RicExportCompletionDataSettingsUi : : calculateValueOptions ( const caf : : PdmFieldHandle * fieldNeedingOptions , bool * useOptionsOnly )
{
QList < caf : : PdmOptionItemInfo > options ;
if ( fieldNeedingOptions = = & timeStep )
{
QStringList timeStepNames ;
if ( caseToApply )
{
timeStepNames = caseToApply - > timeStepStrings ( ) ;
}
for ( int i = 0 ; i < timeStepNames . size ( ) ; i + + )
{
options . push_back ( caf : : PdmOptionItemInfo ( timeStepNames [ i ] , i ) ) ;
}
}
else
{
options = RicCaseAndFileExportSettingsUi : : calculateValueOptions ( fieldNeedingOptions , useOptionsOnly ) ;
}
return options ;
2017-05-16 02:43:41 -05:00
}
2017-06-12 05:03:42 -05:00
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RicExportCompletionDataSettingsUi : : defineUiOrdering ( QString uiConfigName , caf : : PdmUiOrdering & uiOrdering )
{
2018-04-09 04:23:14 -05:00
{
caf : : PdmUiGroup * group = uiOrdering . addNewGroup ( " File Settings " ) ;
group - > add ( & folder ) ;
group - > add ( & fileSplit ) ;
2018-04-13 05:13:27 -05:00
group - > add ( & m_reportCompletionTypesSeparately ) ;
2018-04-09 04:23:14 -05:00
}
{
caf : : PdmUiGroup * group = uiOrdering . addNewGroup ( " Settings " ) ;
2017-09-20 08:24:29 -05:00
2018-04-09 04:23:14 -05:00
group - > add ( & caseToApply ) ;
group - > add ( & compdatExport ) ;
group - > add ( & useLateralNTG ) ;
}
2017-06-12 05:03:42 -05:00
{
2018-04-06 05:56:48 -05:00
caf : : PdmUiGroup * group = uiOrdering . addNewGroup ( " Visible Completions " ) ;
2018-04-09 04:23:14 -05:00
if ( ! m_displayForSimWell )
2017-06-23 08:45:22 -05:00
{
2018-04-09 04:23:14 -05:00
if ( m_perforationsEnabled )
{
group - > add ( & includePerforations ) ;
group - > add ( & timeStep ) ;
if ( ! includePerforations )
timeStep . uiCapability ( ) - > setUiReadOnly ( true ) ;
else
timeStep . uiCapability ( ) - > setUiReadOnly ( false ) ;
}
2017-06-23 08:45:22 -05:00
}
2018-04-09 04:23:14 -05:00
if ( m_fracturesEnabled )
2017-06-23 08:45:22 -05:00
{
2018-04-09 04:23:14 -05:00
group - > add ( & includeFractures ) ;
if ( compdatExport = = WPIMULT_AND_DEFAULT_CONNECTION_FACTORS )
{
includeFractures . uiCapability ( ) - > setUiReadOnly ( true ) ;
}
else if ( compdatExport = = TRANSMISSIBILITIES )
{
includeFractures . uiCapability ( ) - > setUiReadOnly ( false ) ;
}
2017-06-23 08:45:22 -05:00
}
2018-04-13 05:13:27 -05:00
if ( ! m_displayForSimWell )
{
if ( m_fishbonesEnabled )
{
group - > add ( & includeFishbones ) ;
group - > add ( & excludeMainBoreForFishbones ) ;
if ( ! includeFishbones )
excludeMainBoreForFishbones . uiCapability ( ) - > setUiReadOnly ( true ) ;
else
excludeMainBoreForFishbones . uiCapability ( ) - > setUiReadOnly ( false ) ;
}
}
2017-06-21 09:38:57 -05:00
}
2017-08-14 15:30:22 -05:00
2017-06-12 05:03:42 -05:00
uiOrdering . skipRemainingFields ( ) ;
}