From 9c9c43f23a1ac3dcaafe99bccb8525a36d05eb2e Mon Sep 17 00:00:00 2001 From: mattijs <mattijs@hunt.opencfd.co.uk> Date: Thu, 15 Jan 2009 18:25:11 +0000 Subject: [PATCH] new boundary syntax --- .../cavity/constant/polyMesh/blockMeshDict | 66 ++++++++++++++----- 1 file changed, 50 insertions(+), 16 deletions(-) diff --git a/tutorials/icoFoam/cavity/constant/polyMesh/blockMeshDict b/tutorials/icoFoam/cavity/constant/polyMesh/blockMeshDict index d89701b4201..8cd967d0a92 100644 --- a/tutorials/icoFoam/cavity/constant/polyMesh/blockMeshDict +++ b/tutorials/icoFoam/cavity/constant/polyMesh/blockMeshDict @@ -37,25 +37,59 @@ edges ( ); -patches +//patches +//( +// wall movingWall +// ( +// (3 7 6 2) +// ) +// wall fixedWalls +// ( +// (0 4 7 3) +// (2 6 5 1) +// (1 5 4 0) +// ) +// empty frontAndBack +// ( +// (0 3 2 1) +// (4 5 6 7) +// ) +//); + +boundary ( - wall movingWall - ( - (3 7 6 2) - ) - wall fixedWalls - ( - (0 4 7 3) - (2 6 5 1) - (1 5 4 0) - ) - empty frontAndBack - ( - (0 3 2 1) - (4 5 6 7) - ) + movingWall + { + type wall; + faces + ( + (3 7 6 2) + ); + } + + fixedWalls + { + type wall; + faces + ( + (0 4 7 3) + (2 6 5 1) + (1 5 4 0) + ); + } + + frontAndBack + { + type empty; + faces + ( + (0 3 2 1) + (4 5 6 7) + ); + } ); + mergePatchPairs ( ); -- GitLab