diff --git a/tutorials/incompressible/simpleFoam/motorBike/Allrun b/tutorials/incompressible/simpleFoam/motorBike/Allrun index 1dcc3f559be43e31dcee5f778a9c8496a1e52e7e..c097541572a9027e737c9392ebfdf9bb42dac841 100755 --- a/tutorials/incompressible/simpleFoam/motorBike/Allrun +++ b/tutorials/incompressible/simpleFoam/motorBike/Allrun @@ -26,6 +26,8 @@ fi runParallel $decompDict snappyHexMesh -overwrite +runParallel $decompDict topoSet + #- For non-parallel running: - set the initial fields # restore0Dir diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/topoSetDict b/tutorials/incompressible/simpleFoam/motorBike/system/topoSetDict new file mode 100644 index 0000000000000000000000000000000000000000..48fbfcdbfc89b8774b04a8bd0f09d09492b00dc6 --- /dev/null +++ b/tutorials/incompressible/simpleFoam/motorBike/system/topoSetDict @@ -0,0 +1,31 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2006 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object topoSetDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +actions +( + // For easier post-processing, and data-conversion tests + { + name inner; + type cellZoneSet; + action new; + source boxToCell; + min (-1 -0.5 0); + max ( 6 0.5 2); + } +); + +// ************************************************************************* //