Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / conversion / meshTables / remappingDict
blob8b7e6686b264e84ff153121a0c66ebcbb02d3e4d
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       dictionary;
13     object      remapping;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
16 // this is a simple example of remapping cellTable and boundaryRegion entries
17 // NB: can't yet combine boundaryRegions, since this reorganizes the mesh faces
19 // rename/combine cellTable entries
20 //   newName ( listOldNames );
21 cellTable
23     fluid ( fluid "[Ff]Luid[0-9]+" "(inlet|outlet)Region" "cellTable_[0-9]+" );
24     cat1  ( CAT1 "cat1_(Back|Front|Gamma)" );
27 // rename boundary regions
28 //   newName oldName;
29 boundaryRegion
31     inlet_4  inlet_1;
32     inlet_5  inlet_2;
33     inlet_6  inlet_3;
36 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //