mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
incorporates Qr into the balance at the boundary. Qr and QrNrb entries are
necessary now.
The coolingCircuit tutorial case was modified accordingly.
59 lines
1.7 KiB
C++
59 lines
1.7 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object changeDictionaryDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dictionaryReplacement
|
|
{
|
|
T
|
|
{
|
|
boundaryField
|
|
{
|
|
"region0_to.*"
|
|
{
|
|
type compressible::thermalBaffle;
|
|
Tnbr T;
|
|
kappa solidThermo;
|
|
kappaName none;
|
|
QrNbr none;
|
|
Qr none;
|
|
value uniform 300;
|
|
}
|
|
baffleFaces2_side
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
floor
|
|
{
|
|
type fixedValue;
|
|
value uniform 300;
|
|
}
|
|
fixedWalls
|
|
{
|
|
type empty;
|
|
}
|
|
}
|
|
}
|
|
|
|
boundary
|
|
{
|
|
floor
|
|
{
|
|
type patch;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|