diff --git a/src/fvOptions/corrections/limitTemperature/limitTemperature.C b/src/fvOptions/corrections/limitTemperature/limitTemperature.C index 0de200dd3fa0edea3fd70b82b5a0a62304f47e0a..15f4835eb0d6ce3bca2eefee457a5462a9046f3a 100644 --- a/src/fvOptions/corrections/limitTemperature/limitTemperature.C +++ b/src/fvOptions/corrections/limitTemperature/limitTemperature.C @@ -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(); } diff --git a/src/fvOptions/corrections/limitVelocity/limitVelocity.C b/src/fvOptions/corrections/limitVelocity/limitVelocity.C index 3626d501e0b1b12b87ed8f0d7a9c33c8f7f6d88b..d0349fdcd76514d7a5002965b6f14be2d9991b79 100644 --- a/src/fvOptions/corrections/limitVelocity/limitVelocity.C +++ b/src/fvOptions/corrections/limitVelocity/limitVelocity.C @@ -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(); }