mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: thermoSingleLayer: Reinstate support for externalWallHeatFluxTemperature
This commit is contained in:
committed by
Andrew Heather
parent
4636f190da
commit
2b47b72fa8
@ -29,11 +29,12 @@ License
|
|||||||
#include "fvcLaplacian.H"
|
#include "fvcLaplacian.H"
|
||||||
#include "fvcFlux.H"
|
#include "fvcFlux.H"
|
||||||
#include "fvm.H"
|
#include "fvm.H"
|
||||||
#include "addToRunTimeSelectionTable.H"
|
|
||||||
#include "zeroGradientFvPatchFields.H"
|
#include "zeroGradientFvPatchFields.H"
|
||||||
|
#include "mixedFvPatchFields.H"
|
||||||
#include "mappedFieldFvPatchField.H"
|
#include "mappedFieldFvPatchField.H"
|
||||||
#include "mapDistribute.H"
|
#include "mapDistribute.H"
|
||||||
#include "constants.H"
|
#include "constants.H"
|
||||||
|
#include "addToRunTimeSelectionTable.H"
|
||||||
|
|
||||||
// Sub-models
|
// Sub-models
|
||||||
#include "filmThermoModel.H"
|
#include "filmThermoModel.H"
|
||||||
@ -67,7 +68,8 @@ wordList thermoSingleLayer::hsBoundaryTypes()
|
|||||||
if
|
if
|
||||||
(
|
(
|
||||||
T_.boundaryField()[patchi].fixesValue()
|
T_.boundaryField()[patchi].fixesValue()
|
||||||
|| bTypes[patchi] == mappedFieldFvPatchField<scalar>::typeName
|
|| isA<mixedFvPatchScalarField>(T_.boundaryField()[patchi])
|
||||||
|
|| isA<mappedFieldFvPatchField<scalar>>(T_.boundaryField()[patchi])
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
bTypes[patchi] = fixedValueFvPatchField<scalar>::typeName;
|
bTypes[patchi] = fixedValueFvPatchField<scalar>::typeName;
|
||||||
|
|||||||
Reference in New Issue
Block a user