Merge commit 'd3b269b7c6ffa0cd68845adfecdfb849316dba71' into nextRelease
[foam-extend-3.2.git] / src / conversion / meshTables / remappingDict
blobe0c917d16808f8ee2ddf9a1ae276825978a75690
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     location    "constant";
14     object      remapping;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 // this is a simple example of remapping cellTable and boundaryRegion entries
18 // NB: can't yet combine boundaryRegions, since this reorganizes the mesh faces
20 // rename/combine cellTable entries
21 //   newName ( listOldNames );
22 cellTable
24     fluid ( fluid "[Ff]Luid[0-9]+" "(inlet|outlet)Region" "cellTable_[0-9]+" );
25     cat1  ( CAT1 "cat1_(Back|Front|Gamma)" );
28 // rename boundary regions
29 //   newName oldName;
30 boundaryRegion
32     inlet_4  inlet_1;
33     inlet_5  inlet_2;
34     inlet_6  inlet_3;
37 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //