COMP: dynammicRefineFvMesh: typo

This commit is contained in:
mattijs
2014-02-06 11:50:12 +00:00
parent d8179d9322
commit 29e8dfbca3

View File

@ -1264,8 +1264,11 @@ bool Foam::dynamicRefineFvMesh::update()
readScalar(refineDict.lookup("lowerRefineLevel"));
const scalar upperRefineLevel =
readScalar(refineDict.lookup("upperRefineLevel"));
const scalar unrefineLevel =
readScalar(refineDict.lookupOrDefault("unrefineLevel", GREAT));
const scalar unrefineLevel = refineDict.lookupOrDefault<scalar>
(
"unrefineLevel",
GREAT
);
const label nBufferLayers =
readLabel(refineDict.lookup("nBufferLayers"));