mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: fan: call base class updateCoeffs; dont skip level.
This commit is contained in:
@ -52,6 +52,9 @@ void Foam::fanFvPatchField<Foam::scalar>::updateCoeffs()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Note that the neighbour side jump_ data is never actually used; the
|
||||||
|
// jump() function just calls the owner side jump().
|
||||||
|
|
||||||
// Constant
|
// Constant
|
||||||
jump_ = f_[0];
|
jump_ = f_[0];
|
||||||
|
|
||||||
@ -78,7 +81,7 @@ void Foam::fanFvPatchField<Foam::scalar>::updateCoeffs()
|
|||||||
jump_ = max(jump_, scalar(0));
|
jump_ = max(jump_, scalar(0));
|
||||||
}
|
}
|
||||||
|
|
||||||
jumpCyclicFvPatchField<scalar>::updateCoeffs();
|
fixedJumpFvPatchField<scalar>::updateCoeffs();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user