mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: limitTemperature: obey 'active' flag. Fixes #2621
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
Copyright (C) 2012-2017 OpenFOAM Foundation
|
||||
Copyright (C) 2018-2021 OpenCFD Ltd.
|
||||
Copyright (C) 2018-2022 OpenCFD Ltd.
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
This file is part of OpenFOAM.
|
||||
@ -57,6 +57,8 @@ Foam::fv::limitTemperature::limitTemperature
|
||||
Tmin_(coeffs_.get<scalar>("min")),
|
||||
Tmax_(coeffs_.get<scalar>("max")),
|
||||
phase_(coeffs_.getOrDefault<word>("phase", word::null))
|
||||
{
|
||||
if (isActive())
|
||||
{
|
||||
// Set the field name to that of the energy
|
||||
// field from which the temperature is obtained
|
||||
@ -70,6 +72,7 @@ Foam::fv::limitTemperature::limitTemperature
|
||||
|
||||
fv::option::resetApplied();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
||||
|
||||
Reference in New Issue
Block a user