mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Conflicts: tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/constant/polyMesh/boundary tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/0/rho tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/polyMesh/boundary tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/topAir/RASProperties tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/topAir/thermophysicalProperties tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/constant/topAir/turbulenceProperties tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/0/cp tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/0/rho tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeater/constant/polyMesh/boundary tutorials/incompressible/simpleFoam/windTurbineTerrain/0/include/fixedInlet tutorials/incompressible/simpleFoam/windTurbineTerrain/0/include/sideAndTopPatches tutorials/incompressible/simpleFoam/windTurbineTerrain/0/nut tutorials/incompressible/simpleFoam/windTurbineTerrain/0/p tutorials/incompressible/simpleFoam/windTurbineTerrain/constant/RASProperties tutorials/incompressible/simpleFoam/windTurbineTerrain/system/decomposeParDict
63 lines
1.7 KiB
C++
63 lines
1.7 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
<<<<<<< HEAD
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
=======
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
>>>>>>> 34d87d1a94f83ac39028abe5f447f2b6d069380b
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class polyBoundaryMesh;
|
|
location "constant/polyMesh";
|
|
object boundary;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
6
|
|
(
|
|
maxY
|
|
{
|
|
type wall;
|
|
nFaces 300;
|
|
startFace 8300;
|
|
}
|
|
minX
|
|
{
|
|
type patch;
|
|
nFaces 100;
|
|
startFace 8600;
|
|
}
|
|
maxX
|
|
{
|
|
type patch;
|
|
nFaces 100;
|
|
startFace 8700;
|
|
}
|
|
minY
|
|
{
|
|
type wall;
|
|
nFaces 300;
|
|
startFace 8800;
|
|
}
|
|
minZ
|
|
{
|
|
type wall;
|
|
nFaces 300;
|
|
startFace 9100;
|
|
}
|
|
maxZ
|
|
{
|
|
type wall;
|
|
nFaces 300;
|
|
startFace 9400;
|
|
}
|
|
)
|
|
|
|
// ************************************************************************* //
|