STYLE: fan: call base class updateCoeffs; dont skip level.

This commit is contained in:
mattijs
2011-07-22 17:39:05 +01:00
parent 3673d1e643
commit a0bc3bc4da

View File

@ -52,6 +52,9 @@ void Foam::fanFvPatchField<Foam::scalar>::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<Foam::scalar>::updateCoeffs()
jump_ = max(jump_, scalar(0));
}
jumpCyclicFvPatchField<scalar>::updateCoeffs();
fixedJumpFvPatchField<scalar>::updateCoeffs();
}