Added boundary: needed for automatic un script
This commit is contained in:
parent
03bf9da389
commit
a5e9993ba7
2 changed files with 127 additions and 0 deletions
67
tutorials/coupled/conjugateHeatFoam/conjugateCavity/boundary
Normal file
67
tutorials/coupled/conjugateHeatFoam/conjugateCavity/boundary
Normal file
|
@ -0,0 +1,67 @@
|
|||
/*---------------------------------------------------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: 1.3 |
|
||||
| \\ / A nd | Web: http://www.openfoam.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
|
||||
root "/home/hjasak/OpenFOAM/hjasak-1.3/run/coupledMatrix";
|
||||
case "conjugateCavity";
|
||||
instance "constant";
|
||||
local "polyMesh";
|
||||
|
||||
class polyBoundaryMesh;
|
||||
object boundary;
|
||||
}
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
5
|
||||
(
|
||||
movingWall
|
||||
{
|
||||
type wall;
|
||||
nFaces 10;
|
||||
startFace 180;
|
||||
}
|
||||
|
||||
left
|
||||
{
|
||||
type wall;
|
||||
nFaces 10;
|
||||
startFace 190;
|
||||
}
|
||||
|
||||
right
|
||||
{
|
||||
type regionCouple;
|
||||
nFaces 10;
|
||||
startFace 200;
|
||||
|
||||
shadowRegion solid;
|
||||
shadowPatch left;
|
||||
attached on;
|
||||
}
|
||||
|
||||
bottom
|
||||
{
|
||||
type wall;
|
||||
nFaces 10;
|
||||
startFace 210;
|
||||
}
|
||||
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
nFaces 200;
|
||||
startFace 220;
|
||||
}
|
||||
)
|
||||
|
||||
// ************************************************************************* //
|
60
tutorials/coupled/conjugateHeatFoam/heatedBlock/boundary
Normal file
60
tutorials/coupled/conjugateHeatFoam/heatedBlock/boundary
Normal file
|
@ -0,0 +1,60 @@
|
|||
/*---------------------------------------------------------------------------*\
|
||||
| ========= | |
|
||||
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||||
| \\ / O peration | Version: 1.3 |
|
||||
| \\ / A nd | Web: http://www.openfoam.org |
|
||||
| \\/ M anipulation | |
|
||||
\*---------------------------------------------------------------------------*/
|
||||
|
||||
FoamFile
|
||||
{
|
||||
version 2.0;
|
||||
format ascii;
|
||||
|
||||
root "/home/hjasak/OpenFOAM/hjasak-1.3/run/coupledMatrix";
|
||||
case "heatedBlock";
|
||||
instance "constant";
|
||||
local "polyMesh";
|
||||
|
||||
class polyBoundaryMesh;
|
||||
object boundary;
|
||||
}
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
4
|
||||
(
|
||||
topAndBottom
|
||||
{
|
||||
type patch;
|
||||
nFaces 20;
|
||||
startFace 180;
|
||||
}
|
||||
|
||||
left
|
||||
{
|
||||
type regionCouple;
|
||||
nFaces 10;
|
||||
startFace 200;
|
||||
|
||||
shadowRegion region0;
|
||||
shadowPatch right;
|
||||
attached on;
|
||||
}
|
||||
|
||||
right
|
||||
{
|
||||
type patch;
|
||||
nFaces 10;
|
||||
startFace 210;
|
||||
}
|
||||
|
||||
frontAndBack
|
||||
{
|
||||
type empty;
|
||||
nFaces 200;
|
||||
startFace 220;
|
||||
}
|
||||
)
|
||||
|
||||
// ************************************************************************* //
|
Reference in a new issue