mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: advectionDiffusion: avoid recursion. See #71.
Does not fix the tolerance issue.
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2016-2018 OpenCFD Ltd.
|
\\ / A nd | Copyright (C) 2016-2019 OpenCFD Ltd.
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
| Copyright (C) 2015-2017 OpenFOAM Foundation
|
| Copyright (C) 2015-2017 OpenFOAM Foundation
|
||||||
@ -58,7 +58,10 @@ Foam::patchDistMethods::advectionDiffusion::advectionDiffusion
|
|||||||
)
|
)
|
||||||
:
|
:
|
||||||
patchDistMethod(mesh, patchIDs),
|
patchDistMethod(mesh, patchIDs),
|
||||||
coeffs_(dict.optionalSubDict(type() + "Coeffs")),
|
//- We do not want to recurse into 'advectionDiffusion' again so
|
||||||
|
// make sure we pick up 'method' always from the subdictionary.
|
||||||
|
//coeffs_(dict.optionalSubDict(type() + "Coeffs")),
|
||||||
|
coeffs_(dict.subDict(type() + "Coeffs")),
|
||||||
pdmPredictor_
|
pdmPredictor_
|
||||||
(
|
(
|
||||||
patchDistMethod::New
|
patchDistMethod::New
|
||||||
|
|||||||
Reference in New Issue
Block a user