OpenFOAM-5.x/src/mesh
Henry Weller 8bbb379df0 blockMesh: Added support for (<block> <face>) specification of patch faces
e.g. for the cavity tutorial the moving wall patch can be specified in
terms of the block vertices as before:

boundary
(
    movingWall
    {
        type wall;
        faces
        (
            (3 7 6 2)
        );
    }
    .
    .
    .

or the new specification of the face as block 0, block face 3:

boundary
(
    movingWall
    {
        type wall;
        faces
        (
            (0 3)
        );
    }
2016-09-24 08:40:13 +01:00
..
blockMesh blockMesh: Added support for (<block> <face>) specification of patch faces 2016-09-24 08:40:13 +01:00
extrudeModel Doxygen documentation: Standardized the 'See also' heading 2016-06-17 17:31:34 +01:00
snappyHexMesh C++11: Replaced the C NULL with the safer C++11 nullptr 2016-08-05 17:19:38 +01:00
Allwmake wmake/Allwmake: Completed support for targetType 'objects' 2016-06-24 15:25:11 +01:00