BUG: noiseModel - respect lower frequency bound in octave calculation. Fixes #2041

This commit is contained in:
Andrew Heather
2021-03-23 17:12:14 +00:00
parent dbed3a0602
commit 21dda3254c

View File

@ -81,6 +81,10 @@ void Foam::noiseModel::setOctaveBands
// Convert to lower band limit
fTest /= fRatioL2C;
while (fTest < fLower)
{
fTest *= fRatio;
}
forAll(f, i)
{