mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-14 17:44:20 -06:00
370 lines
16 KiB
C++
370 lines
16 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2021- 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 "RicMswCompletions.h"
|
|
|
|
#include "RiaLogging.h"
|
|
#include "RicMswSegmentCellIntersection.h"
|
|
#include "RimWellPath.h"
|
|
#include "RimWellPathValve.h"
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicMswCompletion::RicMswCompletion( const QString& label,
|
|
const RimWellPath* wellPath,
|
|
double startMD,
|
|
double startTVD,
|
|
size_t index /* = cvf::UNDEFINED_SIZE_T */ )
|
|
: RicMswBranch( label, wellPath, startMD, startTVD )
|
|
, m_index( index )
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
size_t RicMswCompletion::index() const
|
|
{
|
|
return m_index;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicMswFracture::RicMswFracture( const QString& label,
|
|
const RimWellPath* wellPath,
|
|
double startMD,
|
|
double startTVD,
|
|
size_t index /*= cvf::UNDEFINED_SIZE_T*/ )
|
|
: RicMswCompletion( label, wellPath, startMD, startTVD, index )
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RigCompletionData::CompletionType RicMswFracture::completionType() const
|
|
{
|
|
return RigCompletionData::CompletionType::FRACTURE;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicMswPerforation::RicMswPerforation( const QString& label,
|
|
const RimWellPath* wellPath,
|
|
double startMD,
|
|
double startTVD,
|
|
size_t index /*= cvf::UNDEFINED_SIZE_T*/ )
|
|
: RicMswCompletion( label, wellPath, startMD, startTVD, index )
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RigCompletionData::CompletionType RicMswPerforation::completionType() const
|
|
{
|
|
return RigCompletionData::CompletionType::PERFORATION;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicMswValve::RicMswValve( const QString& label,
|
|
const RimWellPath* wellPath,
|
|
double startMD,
|
|
double startTVD,
|
|
const RimWellPathValve* wellPathValve )
|
|
: RicMswCompletion( label, wellPath, startMD, startTVD )
|
|
, m_wellPathValve( wellPathValve )
|
|
, m_valid( false )
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
const RimWellPathValve* RicMswValve::wellPathValve() const
|
|
{
|
|
return m_wellPathValve;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RicMswValve::isValid() const
|
|
{
|
|
return m_valid;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicMswValve::setIsValid( bool valid )
|
|
{
|
|
m_valid = valid;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::unique_ptr<RicMswValve> RicMswValve::createTieInValve( const QString& label,
|
|
const RimWellPath* wellPath,
|
|
double startMD,
|
|
double startTVD,
|
|
const RimWellPathValve* wellPathValve )
|
|
{
|
|
if ( wellPathValve->componentType() != RiaDefines::WellPathComponentType::ICV )
|
|
{
|
|
RiaLogging::error( "MSW export: The outlet valve must be of type ICV" );
|
|
return nullptr;
|
|
}
|
|
|
|
std::unique_ptr<RicMswTieInICV> tieInValve =
|
|
std::make_unique<RicMswTieInICV>( label, wellPath, startMD, startTVD, wellPathValve );
|
|
|
|
return tieInValve;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicMswWsegValve::RicMswWsegValve( const QString& label,
|
|
const RimWellPath* wellPath,
|
|
double startMD,
|
|
double startTVD,
|
|
const RimWellPathValve* wellPathValve )
|
|
: RicMswValve( label, wellPath, startMD, startTVD, wellPathValve )
|
|
, m_flowCoefficient( 0.0 )
|
|
, m_area( 0.0 )
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
double RicMswWsegValve::flowCoefficient() const
|
|
{
|
|
return m_flowCoefficient;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
double RicMswWsegValve::area() const
|
|
{
|
|
return m_area;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicMswWsegValve::setFlowCoefficient( double icdFlowCoefficient )
|
|
{
|
|
m_flowCoefficient = icdFlowCoefficient;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicMswWsegValve::setArea( double icdArea )
|
|
{
|
|
m_area = icdArea;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicMswFishbonesICD::RicMswFishbonesICD( const QString& label,
|
|
const RimWellPath* wellPath,
|
|
double startMD,
|
|
double startTVD,
|
|
const RimWellPathValve* wellPathValve )
|
|
: RicMswWsegValve( label, wellPath, startMD, startTVD, wellPathValve )
|
|
{
|
|
setIsValid( true );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RigCompletionData::CompletionType RicMswFishbonesICD::completionType() const
|
|
{
|
|
return RigCompletionData::CompletionType::FISHBONES_ICD;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicMswPerforationICD::RicMswPerforationICD( const QString& label,
|
|
const RimWellPath* wellPath,
|
|
double startMD,
|
|
double startTVD,
|
|
const RimWellPathValve* wellPathValve )
|
|
: RicMswWsegValve( label, wellPath, startMD, startTVD, wellPathValve )
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RigCompletionData::CompletionType RicMswPerforationICD::completionType() const
|
|
{
|
|
return RigCompletionData::CompletionType::PERFORATION_ICD;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicMswPerforationICV::RicMswPerforationICV( const QString& label,
|
|
const RimWellPath* wellPath,
|
|
double startMD,
|
|
double startTVD,
|
|
const RimWellPathValve* wellPathValve )
|
|
: RicMswWsegValve( label, wellPath, startMD, startTVD, wellPathValve )
|
|
{
|
|
setIsValid( true );
|
|
|
|
setFlowCoefficient( wellPathValve->flowCoefficient() );
|
|
double orificeRadius = wellPathValve->orificeDiameter( wellPath->unitSystem() ) / 2;
|
|
setArea( orificeRadius * orificeRadius * cvf::PI_D );
|
|
}
|
|
|
|
//-------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RigCompletionData::CompletionType RicMswPerforationICV::completionType() const
|
|
{
|
|
return RigCompletionData::CompletionType::PERFORATION_ICV;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicMswPerforationAICD::RicMswPerforationAICD( const QString& label,
|
|
const RimWellPath* wellPath,
|
|
double startMD,
|
|
double startTVD,
|
|
const RimWellPathValve* wellPathValve )
|
|
: RicMswValve( label, wellPath, startMD, startTVD, wellPathValve )
|
|
, m_deviceOpen( false )
|
|
, m_length( 0.0 )
|
|
, m_flowScalingFactor( 0.0 )
|
|
{
|
|
m_parameters.fill( std::numeric_limits<double>::infinity() );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RigCompletionData::CompletionType RicMswPerforationAICD::completionType() const
|
|
{
|
|
return RigCompletionData::CompletionType::PERFORATION_AICD;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RicMswPerforationAICD::isOpen() const
|
|
{
|
|
return m_deviceOpen;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicMswPerforationAICD::setIsOpen( bool deviceOpen )
|
|
{
|
|
m_deviceOpen = deviceOpen;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
double RicMswPerforationAICD::length() const
|
|
{
|
|
return m_length;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicMswPerforationAICD::setLength( double length )
|
|
{
|
|
m_length = length;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
double RicMswPerforationAICD::flowScalingFactor() const
|
|
{
|
|
return m_flowScalingFactor;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RicMswPerforationAICD::setflowScalingFactor( double scalingFactor )
|
|
{
|
|
m_flowScalingFactor = scalingFactor;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
const std::array<double, AICD_NUM_PARAMS>& RicMswPerforationAICD::values() const
|
|
{
|
|
return m_parameters;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::array<double, AICD_NUM_PARAMS>& RicMswPerforationAICD::values()
|
|
{
|
|
return m_parameters;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RicMswTieInICV::RicMswTieInICV( const QString& label,
|
|
const RimWellPath* wellPath,
|
|
double startMD,
|
|
double startTVD,
|
|
const RimWellPathValve* wellPathValve )
|
|
: RicMswWsegValve( label, wellPath, startMD, startTVD, wellPathValve )
|
|
{
|
|
setIsValid( true );
|
|
|
|
setFlowCoefficient( wellPathValve->flowCoefficient() );
|
|
double orificeRadius = wellPathValve->orificeDiameter( wellPath->unitSystem() ) / 2;
|
|
setArea( orificeRadius * orificeRadius * cvf::PI_D );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RigCompletionData::CompletionType RicMswTieInICV::completionType() const
|
|
{
|
|
return RigCompletionData::CompletionType::PERFORATION_ICV;
|
|
}
|