Skip to content
Snippets Groups Projects
Commit e2260675 authored by mattijs's avatar mattijs
Browse files

BUG: meanVelictyForce: missing correctBoundaryConditions. Fixes #1136.

parent c03c6bde
Branches
Tags
No related merge requests found
......@@ -3,7 +3,7 @@
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2012-2017 OpenFOAM Foundation
\\/ M anipulation |
\\/ M anipulation | Copyright (C) 2018 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
......@@ -139,6 +139,10 @@ void Foam::fv::limitTemperature::correct(volScalarField& he)
}
}
}
// We've changed internal values so give boundary conditions opportunity
// to correct.
he.correctBoundaryConditions();
}
......
......@@ -3,7 +3,7 @@
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2016-2017 OpenFOAM Foundation
\\/ M anipulation |
\\/ M anipulation | Copyright (C) 2018 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
......@@ -117,6 +117,10 @@ void Foam::fv::limitVelocity::correct(volVectorField& U)
}
}
}
// We've changed internal values so give boundary conditions opportunity
// to correct.
U.correctBoundaryConditions();
}
......
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