This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion2D_simpleFoam/system/createPatchDict

90 lines
2.1 KiB
Text
Raw Normal View History

2010-11-24 23:08:12 +00:00
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2014-06-01 11:15:18 +00:00
| \\ / O peration | Version: 3.1 |
2013-12-11 16:09:41 +00:00
| \\ / A nd | Web: http://www.extend-project.de |
2010-11-24 23:08:12 +00:00
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object createPatchDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Tolerance used in matching faces. Absolute tolerance is span of
// face times this factor. To load incorrectly matches meshes set this
// to a higher value.
matchTolerance 1E-3;
// Do a synchronisation of coupled points after creation of any patches.
// Note: this does not work with points that are on multiple coupled patches
// with transformations.
pointSync true;
// Patches to create.
patchInfo
(
{
name topAndBottom;
dictionary
{
type patch;
}
constructFrom patches;
patches ( auto0 auto2 );
}
{
name inlet;
dictionary
{
type patch;
}
constructFrom patches;
patches ( auto1 );
}
{
name outlet;
dictionary
{
type patch;
}
constructFrom patches;
patches ( auto3 );
}
{
name wing;
dictionary
{
type wall;
}
constructFrom patches;
patches ( auto4 );
}
{
name back;
dictionary
{
type empty;
}
constructFrom patches;
patches ( auto5 );
}
{
name front;
dictionary
{
type empty;
}
constructFrom patches;
patches ( auto6 );
}
);