ENH: Changed default bounds handling to clamp

This commit is contained in:
andy
2011-11-22 15:03:31 +00:00
parent bdeff26fc7
commit f69a2c7776

View File

@ -35,7 +35,7 @@ Foam::TableBase<Type>::TableBase(const word& name, const dictionary& dict)
(
wordToBoundsHandling
(
dict.lookupOrDefault<word>("outOfBounds", "warn")
dict.lookupOrDefault<word>("outOfBounds", "clamp")
)
),
table_()