mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: dynammicRefineFvMesh: typo
This commit is contained in:
@ -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"));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user