diff --git a/src/OpenFOAM/interpolations/interpolationWeights/linearInterpolationWeights/linearInterpolationWeights.C b/src/OpenFOAM/interpolations/interpolationWeights/linearInterpolationWeights/linearInterpolationWeights.C index 18233f1825e64af147de401e28a0e99606cfad11..89497fba3769e9404af15a09c4a67503a17ecbf6 100644 --- a/src/OpenFOAM/interpolations/interpolationWeights/linearInterpolationWeights/linearInterpolationWeights.C +++ b/src/OpenFOAM/interpolations/interpolationWeights/linearInterpolationWeights/linearInterpolationWeights.C @@ -167,8 +167,11 @@ bool linearInterpolationWeights::integrationWeights << exit(FatalError); } - // Currently no fancy logic on cached index - label i1 = findLower(samples_, t1); + // Currently no fancy logic on cached index like in value + + //- Find lower or equal index + label i1 = findLower(samples_, t1, 0, lessEqOp<scalar>()); + //- Find lower index label i2 = findLower(samples_, t2); // For now just fail if any outside table