(#397) (#398) Added globalGridCellIndex access to the ResultAccessors

To prepare for well log extraction
This commit is contained in:
Jacob Støren
2015-08-30 21:25:31 +02:00
parent 371902378e
commit 7794a66b04
10 changed files with 123 additions and 0 deletions

View File

@@ -36,3 +36,19 @@ double RigHugeValResultAccessor::cellFaceScalar(size_t gridLocalCellIndex, cvf::
{
return cellScalar(gridLocalCellIndex);
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
double RigHugeValResultAccessor::cellScalarGlobIdx(size_t globCellIndex) const
{
return HUGE_VAL;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
double RigHugeValResultAccessor::cellFaceScalarGlobIdx(size_t globCellIndex, cvf::StructGridInterface::FaceType faceId) const
{
return HUGE_VAL;
}