mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Remove unused function
This commit is contained in:
parent
8dfe181cc3
commit
6b246f4671
@ -43,7 +43,6 @@ RigCompletionData::RigCompletionData(const QString wellName, const RigCompletion
|
|||||||
, m_count(1)
|
, m_count(1)
|
||||||
, m_wpimult(HUGE_VAL)
|
, m_wpimult(HUGE_VAL)
|
||||||
, m_isMainBore(false)
|
, m_isMainBore(false)
|
||||||
, m_readyForExport(false)
|
|
||||||
, m_completionType(CT_UNDEFINED)
|
, m_completionType(CT_UNDEFINED)
|
||||||
, m_firstOrderingValue(orderingValue)
|
, m_firstOrderingValue(orderingValue)
|
||||||
, m_secondOrderingValue(HUGE_VAL)
|
, m_secondOrderingValue(HUGE_VAL)
|
||||||
@ -161,7 +160,6 @@ void RigCompletionData::setCombinedValuesExplicitTrans(double transmissibility,
|
|||||||
{
|
{
|
||||||
m_completionType = completionType;
|
m_completionType = completionType;
|
||||||
m_transmissibility = transmissibility;
|
m_transmissibility = transmissibility;
|
||||||
m_readyForExport = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//==================================================================================================
|
//==================================================================================================
|
||||||
@ -178,7 +176,6 @@ void RigCompletionData::setCombinedValuesImplicitTransWPImult(double wpi
|
|||||||
m_completionType = completionType;
|
m_completionType = completionType;
|
||||||
m_skinFactor = skinFactor;
|
m_skinFactor = skinFactor;
|
||||||
m_diameter = wellDiameter;
|
m_diameter = wellDiameter;
|
||||||
m_readyForExport = true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//==================================================================================================
|
//==================================================================================================
|
||||||
@ -317,14 +314,6 @@ bool RigCompletionData::isMainBore() const
|
|||||||
return m_isMainBore;
|
return m_isMainBore;
|
||||||
}
|
}
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
///
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
|
||||||
bool RigCompletionData::readyForExport() const
|
|
||||||
{
|
|
||||||
return m_readyForExport;
|
|
||||||
}
|
|
||||||
|
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
///
|
///
|
||||||
//--------------------------------------------------------------------------------------------------
|
//--------------------------------------------------------------------------------------------------
|
||||||
@ -386,7 +375,6 @@ void RigCompletionData::copy(RigCompletionData& target, const RigCompletionData&
|
|||||||
target.m_dFactor = from.m_dFactor;
|
target.m_dFactor = from.m_dFactor;
|
||||||
target.m_direction = from.m_direction;
|
target.m_direction = from.m_direction;
|
||||||
target.m_isMainBore = from.m_isMainBore;
|
target.m_isMainBore = from.m_isMainBore;
|
||||||
target.m_readyForExport = from.m_readyForExport;
|
|
||||||
target.m_count = from.m_count;
|
target.m_count = from.m_count;
|
||||||
target.m_wpimult = from.m_wpimult;
|
target.m_wpimult = from.m_wpimult;
|
||||||
target.m_completionType = from.m_completionType;
|
target.m_completionType = from.m_completionType;
|
||||||
|
@ -115,7 +115,6 @@ public:
|
|||||||
double wpimult() const;
|
double wpimult() const;
|
||||||
CompletionType completionType() const;
|
CompletionType completionType() const;
|
||||||
bool isMainBore() const;
|
bool isMainBore() const;
|
||||||
bool readyForExport() const;
|
|
||||||
|
|
||||||
double firstOrderingValue() const;
|
double firstOrderingValue() const;
|
||||||
double secondOrderingValue() const;
|
double secondOrderingValue() const;
|
||||||
@ -135,7 +134,6 @@ private:
|
|||||||
CellDirection m_direction;
|
CellDirection m_direction;
|
||||||
|
|
||||||
bool m_isMainBore; //to use mainbore for Eclipse calculation
|
bool m_isMainBore; //to use mainbore for Eclipse calculation
|
||||||
bool m_readyForExport;
|
|
||||||
|
|
||||||
size_t m_count; //TODO: Remove, usage replaced by WPImult
|
size_t m_count; //TODO: Remove, usage replaced by WPImult
|
||||||
double m_wpimult;
|
double m_wpimult;
|
||||||
|
Loading…
Reference in New Issue
Block a user