29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
|
/*--------------------------------*- C++ -*----------------------------------*\
|
||
|
| ========= | |
|
||
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
||
|
| \\ / O peration | Version: v2012 |
|
||
|
| \\ / A nd | Website: www.openfoam.com |
|
||
|
| \\/ M anipulation | |
|
||
|
\*---------------------------------------------------------------------------*/
|
||
|
FoamFile
|
||
|
{
|
||
|
version 2.0;
|
||
|
format ascii;
|
||
|
class dictionary;
|
||
|
object collapseDict;
|
||
|
}
|
||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||
|
|
||
|
collapseEdgesCoeffs
|
||
|
{
|
||
|
// Edges shorter than this absolute value will be merged
|
||
|
minimumEdgeLength 2e-7;
|
||
|
|
||
|
// The maximum angle between two edges that share a point attached to
|
||
|
// no other edges
|
||
|
maximumMergeAngle 5;
|
||
|
}
|
||
|
|
||
|
|
||
|
// ************************************************************************* //
|