ENH: renumberMethods: added structuredRenumber

This commit is contained in:
mattijs
2012-06-07 11:22:30 +01:00
parent 77dd4af3d9
commit b892ada5bc
7 changed files with 276 additions and 285 deletions

View File

@ -40,8 +40,8 @@ method CuthillMcKee;
//method Sloan;
//method manual;
//method random;
//method structured;
//method spring;
//method boundaryFirst;
//method zoltan; // only if compiled with zoltan support
//CuthillMcKeeCoeffs
@ -57,6 +57,23 @@ manualCoeffs
}
// For extruded (i.e. structured in one direction) meshes
structuredCoeffs
{
// Patches that mesh was extruded from. These determine the starting
// layer of cells
patches (movingWall);
// Method to renumber the starting layer of cells
method random;
// Renumber in columns (depthFirst) or in layers
depthFirst true;
// Optional: reverse ordering
//reverse false;
}
springCoeffs
{
// Maximum jump of cell indices. Is fraction of number of cells
@ -90,10 +107,4 @@ zoltanCoeffs
}
//boundaryFirstCoeffs
//{
// reverse true;
//}
// ************************************************************************* //