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")); readScalar(refineDict.lookup("lowerRefineLevel"));
const scalar upperRefineLevel = const scalar upperRefineLevel =
readScalar(refineDict.lookup("upperRefineLevel")); readScalar(refineDict.lookup("upperRefineLevel"));
const scalar unrefineLevel = const scalar unrefineLevel = refineDict.lookupOrDefault<scalar>
readScalar(refineDict.lookupOrDefault("unrefineLevel", GREAT)); (
"unrefineLevel",
GREAT
);
const label nBufferLayers = const label nBufferLayers =
readLabel(refineDict.lookup("nBufferLayers")); readLabel(refineDict.lookup("nBufferLayers"));