ENH: redistributePar tutorial: cleanup

This commit is contained in:
mattijs
2014-03-14 20:16:39 +00:00
parent 3de01b945d
commit 01b086981a
2 changed files with 1 additions and 44 deletions

View File

@ -24,7 +24,7 @@ runParallel -l log.icoFoam-random icoFoam 2
cp system/controlDict-latestTime system/controlDict
#- redistribute to 5 processors
cp system/decomposeParDict-5 system/decomposeParDict
runParallel -l log.redistributePar-5 redistributePar 5
runParallel -l log.redistributePar-5 redistributePar 5 -cellDist
#- run a bit more
runParallel -l log.icoFoam-5 icoFoam 5

View File

@ -1,43 +0,0 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class polyBoundaryMesh;
location "constant/polyMesh";
object boundary;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
3
(
movingWall
{
type wall;
inGroups 1(wall);
nFaces 20;
startFace 760;
}
fixedWalls
{
type wall;
inGroups 1(wall);
nFaces 60;
startFace 780;
}
frontAndBack
{
type empty;
inGroups 1(empty);
nFaces 800;
startFace 840;
}
)
// ************************************************************************* //