2020-05-13 23:39:55 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2020- 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.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "RicNewFractureModelFeature.h"
|
|
|
|
|
|
|
|
#include "RiaApplication.h"
|
|
|
|
|
|
|
|
#include "RicFractureNameGenerator.h"
|
|
|
|
|
|
|
|
#include "RimFractureModel.h"
|
|
|
|
#include "RimFractureModelCollection.h"
|
|
|
|
#include "RimModeledWellPath.h"
|
|
|
|
#include "RimOilField.h"
|
|
|
|
#include "RimProject.h"
|
|
|
|
#include "RimWellPath.h"
|
|
|
|
#include "RimWellPathCollection.h"
|
|
|
|
#include "RimWellPathCompletions.h"
|
|
|
|
|
|
|
|
#include "Riu3DMainWindowTools.h"
|
|
|
|
|
|
|
|
#include "WellPathCommands/RicWellPathsUnitSystemSettingsImpl.h"
|
|
|
|
|
|
|
|
#include "cafSelectionManager.h"
|
|
|
|
|
|
|
|
#include "cvfAssert.h"
|
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
|
|
|
|
CAF_CMD_SOURCE_INIT( RicNewFractureModelFeature, "RicNewFractureModelFeature" );
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2020-08-07 09:00:17 -05:00
|
|
|
RimFractureModel* RicNewFractureModelFeature::addFractureModel( RimWellPath* wellPath,
|
|
|
|
RimWellPathCollection* wellPathCollection )
|
2020-05-13 23:39:55 -05:00
|
|
|
{
|
|
|
|
CVF_ASSERT( wellPath );
|
|
|
|
|
2020-08-07 09:00:17 -05:00
|
|
|
if ( !RicWellPathsUnitSystemSettingsImpl::ensureHasUnitSystem( wellPath ) ) return nullptr;
|
2020-05-13 23:39:55 -05:00
|
|
|
|
|
|
|
RimFractureModelCollection* fractureModelCollection = wellPath->fractureModelCollection();
|
|
|
|
CVF_ASSERT( fractureModelCollection );
|
|
|
|
|
|
|
|
RimOilField* oilfield = nullptr;
|
|
|
|
fractureModelCollection->firstAncestorOrThisOfType( oilfield );
|
2020-08-07 09:00:17 -05:00
|
|
|
if ( !oilfield ) return nullptr;
|
|
|
|
|
|
|
|
RimFractureModel* fractureModel = new RimFractureModel();
|
|
|
|
fractureModelCollection->addFractureModel( fractureModel );
|
2020-05-13 23:39:55 -05:00
|
|
|
|
|
|
|
QString fractureModelName = RicFractureNameGenerator::nameForNewFractureModel();
|
|
|
|
fractureModel->setName( fractureModelName );
|
|
|
|
|
|
|
|
RimProject* project = nullptr;
|
|
|
|
fractureModelCollection->firstAncestorOrThisOfType( project );
|
|
|
|
|
|
|
|
// Add a "fake" well path for thickess direction
|
|
|
|
RimModeledWellPath* thicknessDirectionWellPath = new RimModeledWellPath;
|
|
|
|
fractureModel->setThicknessDirectionWellPath( thicknessDirectionWellPath );
|
|
|
|
|
|
|
|
std::vector<RimWellPath*> wellPaths = {thicknessDirectionWellPath};
|
|
|
|
wellPathCollection->addWellPaths( wellPaths );
|
|
|
|
|
|
|
|
if ( project )
|
|
|
|
{
|
|
|
|
project->reloadCompletionTypeResultsInAllViews();
|
|
|
|
project->updateAllRequiredEditors();
|
|
|
|
}
|
|
|
|
|
|
|
|
Riu3DMainWindowTools::selectAsCurrentItem( fractureModel );
|
2020-08-07 09:00:17 -05:00
|
|
|
return fractureModel;
|
2020-05-13 23:39:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RicNewFractureModelFeature::onActionTriggered( bool isChecked )
|
|
|
|
{
|
|
|
|
RimFractureModelCollection* fractureColl = RicNewFractureModelFeature::selectedFractureModelCollection();
|
|
|
|
if ( !fractureColl ) return;
|
|
|
|
|
|
|
|
RimWellPath* wellPath = nullptr;
|
|
|
|
fractureColl->firstAncestorOrThisOfTypeAsserted( wellPath );
|
|
|
|
|
|
|
|
RimWellPathCollection* wellPathCollection = nullptr;
|
|
|
|
fractureColl->firstAncestorOrThisOfTypeAsserted( wellPathCollection );
|
|
|
|
|
|
|
|
RicNewFractureModelFeature::addFractureModel( wellPath, wellPathCollection );
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RicNewFractureModelFeature::setupActionLook( QAction* actionToSetup )
|
|
|
|
{
|
|
|
|
actionToSetup->setIcon( QIcon( ":/FractureSymbol16x16.png" ) );
|
|
|
|
actionToSetup->setText( "Create Fracture Model" );
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
bool RicNewFractureModelFeature::isCommandEnabled()
|
|
|
|
{
|
2020-08-26 08:52:47 -05:00
|
|
|
return selectedFractureModelCollection() != nullptr;
|
2020-05-13 23:39:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimFractureModelCollection* RicNewFractureModelFeature::selectedFractureModelCollection()
|
|
|
|
{
|
2020-08-26 08:52:47 -05:00
|
|
|
std::vector<caf::PdmUiItem*> selectedItems;
|
|
|
|
caf::SelectionManager::instance()->selectedItems( selectedItems );
|
|
|
|
if ( selectedItems.size() != 1u ) return nullptr;
|
2020-05-13 23:39:55 -05:00
|
|
|
|
2020-08-26 08:52:47 -05:00
|
|
|
caf::PdmUiItem* pdmUiItem = selectedItems.front();
|
2020-05-13 23:39:55 -05:00
|
|
|
|
2020-08-26 08:52:47 -05:00
|
|
|
RimFractureModelCollection* fractureModelCollection = nullptr;
|
|
|
|
caf::PdmObjectHandle* objHandle = dynamic_cast<caf::PdmObjectHandle*>( pdmUiItem );
|
2020-05-13 23:39:55 -05:00
|
|
|
if ( objHandle )
|
|
|
|
{
|
2020-08-26 08:52:47 -05:00
|
|
|
objHandle->firstAncestorOrThisOfType( fractureModelCollection );
|
|
|
|
|
|
|
|
if ( fractureModelCollection ) return fractureModelCollection;
|
|
|
|
|
|
|
|
RimWellPath* wellPath = dynamic_cast<RimWellPath*>( objHandle );
|
|
|
|
if ( wellPath ) return wellPath->fractureModelCollection();
|
2020-05-13 23:39:55 -05:00
|
|
|
|
|
|
|
RimWellPathCompletions* completions =
|
|
|
|
caf::SelectionManager::instance()->selectedItemOfType<RimWellPathCompletions>();
|
2020-08-26 08:52:47 -05:00
|
|
|
if ( completions ) return completions->fractureModelCollection();
|
2020-05-13 23:39:55 -05:00
|
|
|
}
|
2020-08-26 08:52:47 -05:00
|
|
|
return nullptr;
|
2020-05-13 23:39:55 -05:00
|
|
|
}
|