diff --git a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C index b6f09ca1f6..380cad9190 100644 --- a/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C +++ b/src/finiteVolume/fields/fvPatchFields/derived/fan/fanFvPatchFields.C @@ -52,6 +52,9 @@ void Foam::fanFvPatchField::updateCoeffs() return; } + // Note that the neighbour side jump_ data is never actually used; the + // jump() function just calls the owner side jump(). + // Constant jump_ = f_[0]; @@ -78,7 +81,7 @@ void Foam::fanFvPatchField::updateCoeffs() jump_ = max(jump_, scalar(0)); } - jumpCyclicFvPatchField::updateCoeffs(); + fixedJumpFvPatchField::updateCoeffs(); }