From abdc97f2604eac004067144523021f19e71c1300 Mon Sep 17 00:00:00 2001 From: sergio <s.ferraris@opencfd.co.uk> Date: Wed, 13 Apr 2011 12:13:06 +0100 Subject: [PATCH] STY: Changinf blockMeshDict style --- .../constant/polyMesh/blockMeshDict | 163 ++++++++++-------- 1 file changed, 94 insertions(+), 69 deletions(-) diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/polyMesh/blockMeshDict b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/polyMesh/blockMeshDict index c870b50cdb7..cfcde8b5ce0 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/polyMesh/blockMeshDict +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/constant/polyMesh/blockMeshDict @@ -167,76 +167,101 @@ blocks hex (29 13 12 28 73 61 60 72) (5 5 7) simpleGrading (1 1 2.985984) ); -patches +boundary ( - patch outer - ( - (91 90 86 87) - (90 89 85 86) - (89 88 84 85) - (87 86 82 83) - (86 85 81 82) - (85 84 80 81) - (83 82 78 79) - (82 81 77 78) - (81 80 76 77) - (48 64 68 52) - (64 76 80 68) - (52 68 70 56) - (68 80 84 70) - (56 70 72 60) - (70 84 88 72) - (91 87 71 75) - (87 83 69 71) - (83 79 67 69) - (75 71 59 63) - (71 69 55 59) - (69 67 51 55) - (48 49 65 64) - (49 50 66 65) - (50 51 67 66) - (64 65 77 76) - (65 66 78 77) - (66 67 79 78) - (91 75 74 90) - (75 63 62 74) - (90 74 73 89) - (74 62 61 73) - (89 73 72 88) - (73 61 60 72) - ) - wall ground - ( - (0 4 5 1) - (1 5 6 2) - (2 6 7 3) - (4 8 9 5) - (5 9 10 6) - (6 10 11 7) - (8 12 13 9) - (9 13 14 10) - (10 14 15 11) - (4 0 48 52) - (8 4 52 56) - (12 8 56 60) - (11 15 63 59) - (7 11 59 55) - (3 7 55 51) - (0 1 49 48) - (1 2 50 49) - (2 3 51 50) - (15 14 62 63) - (14 13 61 62) - (13 12 60 61) - ) - wall blockedFaces - () - wall baffleWall - () - cycic baffleCyclic_half0 - () - cycic baffleCyclic_half1 - () + outer + { + type patch; + faces + ( + (91 90 86 87) + (90 89 85 86) + (89 88 84 85) + (87 86 82 83) + (86 85 81 82) + (85 84 80 81) + (83 82 78 79) + (82 81 77 78) + (81 80 76 77) + (48 64 68 52) + (64 76 80 68) + (52 68 70 56) + (68 80 84 70) + (56 70 72 60) + (70 84 88 72) + (91 87 71 75) + (87 83 69 71) + (83 79 67 69) + (75 71 59 63) + (71 69 55 59) + (69 67 51 55) + (48 49 65 64) + (49 50 66 65) + (50 51 67 66) + (64 65 77 76) + (65 66 78 77) + (66 67 79 78) + (91 75 74 90) + (75 63 62 74) + (90 74 73 89) + (74 62 61 73) + (89 73 72 88) + (73 61 60 72) + ); + } + ground + { + type wall; + faces + ( + (0 4 5 1) + (1 5 6 2) + (2 6 7 3) + (4 8 9 5) + (5 9 10 6) + (6 10 11 7) + (8 12 13 9) + (9 13 14 10) + (10 14 15 11) + (4 0 48 52) + (8 4 52 56) + (12 8 56 60) + (11 15 63 59) + (7 11 59 55) + (3 7 55 51) + (0 1 49 48) + (1 2 50 49) + (2 3 51 50) + (15 14 62 63) + (14 13 61 62) + (13 12 60 61) + ); + } + blockedFaces + { + type wall; + faces (); + } + + baffleWall + { + type wall; + faces (); + } + + baffleCyclic_half0 + { + type cyclic; + neighbourPatch baffleCyclic_half1; + faces (); + } + + baffleCyclic_half1 + { + type cyclic; + neighbourPatch baffleCyclic_half0; + faces (); + } ); -- GitLab