mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Default expansionRatio to 1 for mesh extrusion
This commit is contained in:
@ -42,7 +42,7 @@ Foam::extrudeModel::extrudeModel
|
|||||||
)
|
)
|
||||||
:
|
:
|
||||||
nLayers_(dict.lookupOrDefault<label>("nLayers", 1)),
|
nLayers_(dict.lookupOrDefault<label>("nLayers", 1)),
|
||||||
expansionRatio_(readScalar(dict.lookup("expansionRatio"))),
|
expansionRatio_(dict.lookupOrDefault<scalar>("expansionRatio", 1)),
|
||||||
dict_(dict),
|
dict_(dict),
|
||||||
coeffDict_(dict.subDict(modelType + "Coeffs"))
|
coeffDict_(dict.subDict(modelType + "Coeffs"))
|
||||||
{}
|
{}
|
||||||
|
|||||||
Reference in New Issue
Block a user