mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
39 lines
1.3 KiB
INI
39 lines
1.3 KiB
INI
/*---------------------------------------------------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 1.0 |
|
|
| \\ / A nd | Web: http://www.openfoam.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
// splitMesh tool definition
|
|
|
|
description "Splits mesh by making internal faces external";
|
|
|
|
splitMeshDict
|
|
{
|
|
type dictionary;
|
|
description "splitMesh control dictionary";
|
|
dictionaryPath "system";
|
|
|
|
entries
|
|
{
|
|
arguments
|
|
{
|
|
type rootCaseArguments;
|
|
entries
|
|
{
|
|
faceSet
|
|
{
|
|
type word;
|
|
description "Face set to become external faces";
|
|
}
|
|
|
|
include "$FOAMX_CONFIG/entries/arguments/masterPatch.cfg";
|
|
include "$FOAMX_CONFIG/entries/arguments/slavePatch.cfg";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|