openfoam/tutorials/preProcessing/createZeroDirectory/snappyMultiRegionHeater/system/heater/caseProperties
2023-02-13 21:18:57 +01:00

73 lines
1.7 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2306 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object caseProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
initialConditions
{
p uniform 100000;
T uniform 300;
}
boundaryConditions
{
fixedTemperature
{
category wall;
type thermal;
patches (minY);
options
{
heatTransfer fixedTemperature;
}
values
{
$/initialConditions;
T uniform 500;
}
}
thermalWalls
{
category wall;
type thermal;
patches (minZ maxZ);
options
{
heatTransfer adiabatic;
}
values
{
$/initialConditions;
}
}
thermalCoupledWalls
{
category wall;
type thermal;
patches (".*_to_.*");
options
{
heatTransfer thermalCoupled;
}
values
{
$/initialConditions;
}
}
}
// ************************************************************************* //