mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
53 lines
1.5 KiB
C++
53 lines
1.5 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class volScalarField;
|
|
location "0/region0_to_wallFilmRegion_masterRegion";
|
|
object T;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
dimensions [0 0 0 1 0 0 0];
|
|
|
|
internalField uniform 300;
|
|
|
|
boundaryField
|
|
{
|
|
// nonuniformTransformCyclic boundaries between film patches
|
|
"(cube[0-9][0-9]_side[0-9]_to_cube[0-9][0-9]_side[0-9])"
|
|
{
|
|
type nonuniformTransformCyclic;
|
|
}
|
|
|
|
// top film surface
|
|
"(.*top)"
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
|
|
// mapped boundaries
|
|
"(region0_to.*)"
|
|
{
|
|
type directMappedFixedInternalValue;
|
|
average 300;
|
|
setAverage no;
|
|
value uniform 300;
|
|
}
|
|
|
|
// floor sides
|
|
walls
|
|
{
|
|
type zeroGradient;
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|