Rationalised thermal boundary condition class names and simplified user input

Renamed classes:

    turbulentTemperatureCoupledBaffleMixedFvPatchScalarField ->
        coupledTemperatureFvPatchScalarField

    externalWallHeatFluxTemperatureFvPatchScalarField ->
        externalTemperatureFvPatchScalarField

Radiation heat-flux support in turbulentTemperatureRadCoupledMixed transferred
to coupledTemperatureFvPatchScalarField and turbulentTemperatureRadCoupledMixed removed.

Renamed boundary condition type names in T field files:

    compressible::turbulentTemperatureCoupledBaffleMixed -> coupledTemperature

    compressible::turbulentTemperatureRadCoupledMixed -> coupledTemperature

    compressible::externalWallHeatFluxTemperature -> externalTemperature

Backward-compatibility is provided for all three of the above BC specifications
so existing cases will run as before but we recommend migrating to the new
simpler names.
This commit is contained in:
Henry Weller
2022-10-12 21:17:25 +01:00
parent a4ca75045c
commit 5c01fef155
22 changed files with 285 additions and 176 deletions

View File

@ -29,9 +29,8 @@ boundaryField
"baffle3D_to_fluid_.*"
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
kappa kappa;
Tnbr T;
value $internalField;
}
}

View File

@ -29,9 +29,8 @@ boundaryField
"fluid_to_baffle3D_.*"
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
kappa kappa;
Tnbr T;
value $internalField;
}

View File

@ -39,9 +39,8 @@ boundaryField
wall
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
kappa kappa;
Tnbr T;
value $internalField;
}

View File

@ -21,9 +21,8 @@ boundaryField
{
wall
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
kappa kappa;
Tnbr T;
value $internalField;
}
}

View File

@ -36,9 +36,8 @@ boundaryField
wall
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
kappa kappa;
Tnbr T;
value uniform $Tinitial;
}

View File

@ -23,11 +23,11 @@ boundaryField
{
wall
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
value $internalField;
kappa kappa;
Tnbr T;
}
}
// ************************************************************************* //

View File

@ -35,10 +35,10 @@ boundaryField
}
fluid_to_metal
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
value $internalField;
Tnbr T;
}
}
// ************************************************************************* //

View File

@ -28,10 +28,10 @@ boundaryField
}
heater_to_metal
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
value $internalField;
Tnbr T;
}
}
// ************************************************************************* //

View File

@ -28,16 +28,15 @@ boundaryField
}
metal_to_fluid
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
value $internalField;
Tnbr T;
}
metal_to_heater
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
value $internalField;
Tnbr T;
}
}
// ************************************************************************* //

View File

@ -27,18 +27,18 @@ boundaryField
type fixedValue;
value $internalField;
}
outlet
{
type inletOutlet;
value $internalField;
inletValue $internalField;
}
gas_to_solid
{
type compressible::turbulentTemperatureRadCoupledMixed;
type coupledTemperature;
value $internalField;
Tnbr T;
qrNbr none;
qr qr;
}
}

View File

@ -24,18 +24,17 @@ boundaryField
external
{
type externalWallHeatFluxTemperature;
type externalTemperature;
h uniform 1e3;
Ta $internalField;
value $internalField;
}
solid_to_gas
{
type compressible::turbulentTemperatureRadCoupledMixed;
type coupledTemperature;
value $internalField;
Tnbr T;
qrNbr qr;
qr none;
}
}

View File

@ -39,10 +39,10 @@ boundaryField
}
shell_to_solid
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
value $internalField;
Tnbr T;
}
}
// ************************************************************************* //

View File

@ -28,15 +28,13 @@ boundaryField
}
solid_to_shell
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
value $internalField;
Tnbr T;
}
solid_to_tube
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
value $internalField;
Tnbr T;
}
}

View File

@ -39,9 +39,8 @@ boundaryField
}
tube_to_solid
{
type compressible::turbulentTemperatureCoupledBaffleMixed;
type coupledTemperature;
value $internalField;
Tnbr T;
}
}