mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#9742 Set default value 1* for KH
This commit is contained in:
parent
d47d4060cc
commit
39d011b1e6
@ -136,7 +136,7 @@ void RicWellPathExportCompletionDataFeatureImpl::exportCompletions( const std::v
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
fractureTransmissibilityExportInformationStream =
|
fractureTransmissibilityExportInformationStream =
|
||||||
std::unique_ptr<QTextStream>( new QTextStream( &fractureTransmissibilityExportInformationFile ) );
|
std::make_unique<QTextStream>( &fractureTransmissibilityExportInformationFile );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -575,9 +575,10 @@ RigCompletionData RicWellPathExportCompletionDataFeatureImpl::combineEclipseCell
|
|||||||
cellIndexIJK.globalCellIndex(),
|
cellIndexIJK.globalCellIndex(),
|
||||||
cellDirection );
|
cellDirection );
|
||||||
|
|
||||||
double wpimult = combinedTrans / transmissibilityEclipseCalculation;
|
double defaultKh = RigCompletionData::defaultValue();
|
||||||
|
double wpimult = combinedTrans / transmissibilityEclipseCalculation;
|
||||||
resultCompletion.setCombinedValuesImplicitTransWPImult( wpimult,
|
resultCompletion.setCombinedValuesImplicitTransWPImult( wpimult,
|
||||||
combinedKh,
|
defaultKh,
|
||||||
combinedDFactor,
|
combinedDFactor,
|
||||||
combinedSkinFactor,
|
combinedSkinFactor,
|
||||||
combinedDiameter,
|
combinedDiameter,
|
||||||
@ -1617,7 +1618,7 @@ std::pair<double, cvf::Vec2i>
|
|||||||
if ( grid ) gridId = grid->gridId();
|
if ( grid ) gridId = grid->gridId();
|
||||||
}
|
}
|
||||||
|
|
||||||
for ( WellPathCellIntersectionInfo intersection : intersections )
|
for ( const WellPathCellIntersectionInfo& intersection : intersections )
|
||||||
{
|
{
|
||||||
size_t gridLocalCellIndex = 0;
|
size_t gridLocalCellIndex = 0;
|
||||||
const RigGridBase* grid = mainGrid->gridAndGridLocalIdxFromGlobalCellIdx( intersection.globCellIndex, &gridLocalCellIndex );
|
const RigGridBase* grid = mainGrid->gridAndGridLocalIdxFromGlobalCellIdx( intersection.globCellIndex, &gridLocalCellIndex );
|
||||||
|
Loading…
Reference in New Issue
Block a user