Skip to content
Snippets Groups Projects
Commit bb8c2712 authored by laurence's avatar laurence
Browse files

ENH: cvMesh: Set refinementFactor default to 1.0

parent 95cead86
Branches
Tags
No related merge requests found
......@@ -46,7 +46,10 @@ Foam::surfaceCellSizeFunction::surfaceCellSizeFunction
dictionary(surfaceCellSizeFunctionDict),
surface_(surface),
coeffsDict_(subDict(type + "Coeffs")),
refinementFactor_(readScalar(lookup("refinementFactor")))
refinementFactor_
(
lookupOrDefault<scalar>("refinementFactor", 1.0)
)
{}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment