initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / utilities / mesh / conversion / fluentMeshToFoam / README.txt
blob8089acb5311b00f55d86e159c52650ba0c33979d
1 Notes for fluentMeshToFoam with zone preservation
2 #################################################
4 1. New option added:
5     - writeSets: 
6     Writes all Fluent boundaries faceSets preserving Fluent names
7     Writes all Fluent regions to cellSets preserving Fluent names
8     lines: 1375 - 1393 & 1673 - 1741
9     sets are useful for post-processing using foamToVTK with the "-faceSet
10     <name>" and "-cellSet <name>" options.
11     
12     - writeZones: 
13     Writes all regions to cellZones preserving Fluent names
14     Writes all region internal face to faceZones preserving Fluent names 
15     lines: 1545 - 1667
16     Zones are usefull for porous media and MRF calculations
18 2. Zone Access
19     - Zones are simple lists of label lists that can be accessed from polyMesh 
20     with the cellZones(), faceZones() and pointZones() member functions
22     - Example (Members from polyMesh.H and ZoneMesh.H):
23     label thisCellZoneID = mesh.cellZones().findZoneID("thisZoneName");
24     const labelList& thisCellZone = mesh.cellZones()[thisCellZoneID];
25     
26     - Zone integrity is preserved during mesh modification and decompomposition.
27     
28     - Once created via addZones, zones allow modification through non-const 
29     access
31 3. Fluent boundary types.
32     - All internal and baffle elements are ignored during conversion
33     
34     - Boundary faces labelled as internal (i.e. interior, interface, internal,
35     solid, fan, radiator, porous-jump) but that are in fact external boundaries
36     will be added to a default wall boundary.