Files
OpenFOAM-12/tutorials/multicomponentFluid/membrane/system/createBafflesDict
2024-07-06 16:02:47 +01:00

43 lines
1.1 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 12
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
format ascii;
class dictionary;
object createBafflesDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
internalFacesOnly true;
baffles
{
membrane
{
type faceZone;
zoneName membrane;
owner
{
name membranePipe;
type mappedWall;
neighbourPatch membraneSleeve;
}
neighbour
{
name membraneSleeve;
type mappedWall;
neighbourPatch membranePipe;
}
}
}
// ************************************************************************* //