mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Fixup after WBS-review
This commit is contained in:
parent
fa80a437ce
commit
3381cbc962
@ -128,6 +128,7 @@ void RigGeoMechWellLogExtractor::curveData( const RigFemResultAddress& resAddr,
|
||||
if ( resAddr.fieldName == RiaDefines::wbsFGResult().toStdString() )
|
||||
{
|
||||
wellBoreWallCurveData( resAddr, frameIndex, values );
|
||||
// Try to replace invalid values with Shale-values
|
||||
wellBoreFGShale( frameIndex, values );
|
||||
}
|
||||
else if ( resAddr.fieldName == RiaDefines::wbsSFGResult().toStdString() )
|
||||
@ -147,7 +148,7 @@ void RigGeoMechWellLogExtractor::curveData( const RigFemResultAddress& resAddr,
|
||||
}
|
||||
else if ( resAddr.fieldName == RiaDefines::wbsSHMkResult().toStdString() )
|
||||
{
|
||||
wellBoreSHMk( frameIndex, values );
|
||||
wellBoreSH_MatthewsKelly( frameIndex, values );
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -626,7 +627,7 @@ void RigGeoMechWellLogExtractor::wellBoreFGShale( int frameIndex, std::vector<do
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
void RigGeoMechWellLogExtractor::wellBoreSHMk( int frameIndex, std::vector<double>* values )
|
||||
void RigGeoMechWellLogExtractor::wellBoreSH_MatthewsKelly( int frameIndex, std::vector<double>* values )
|
||||
{
|
||||
std::vector<double> PP, PP0; // results
|
||||
std::vector<double> K0_SH, OBG0, DF; // parameters
|
||||
|
@ -101,7 +101,7 @@ private:
|
||||
void wellBoreWallCurveData( const RigFemResultAddress& resAddr, int frameIndex, std::vector<double>* values );
|
||||
|
||||
void wellBoreFGShale( int frameIndex, std::vector<double>* values );
|
||||
void wellBoreSHMk( int frameIndex, std::vector<double>* values );
|
||||
void wellBoreSH_MatthewsKelly( int frameIndex, std::vector<double>* values );
|
||||
|
||||
template <typename T>
|
||||
T interpolateGridResultValue( RigFemResultPosEnum resultPosType,
|
||||
|
Loading…
Reference in New Issue
Block a user