SIBS: Corrected initial value of SIBS::redMin

Resolves bug report: http://www.openfoam.com/mantisbt/view.php?id=64
This commit is contained in:
Henry
2010-10-26 09:41:41 +01:00
parent cfbc1fcbef
commit 2864fdfd56

View File

@ -37,8 +37,11 @@ namespace Foam
const label SIBS::nSeq_[iMaxX_] = {2, 6, 10, 14, 22, 34, 50, 70};
const scalar
SIBS::safe1 = 0.25, SIBS::safe2 = 0.7,
SIBS::redMax = 1.0e-5, SIBS::redMin = 0.0, SIBS::scaleMX = 0.1;
SIBS::safe1 = 0.25,
SIBS::safe2 = 0.7,
SIBS::redMax = 1.0e-5,
SIBS::redMin = 0.7,
SIBS::scaleMX = 0.1;
};