Skip to content
Snippets Groups Projects
Commit 8bbb379d authored by Henry Weller's avatar Henry Weller
Browse files

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)
        );
    }
parent c169ca14
Branches
Tags
1 merge request!60Merge foundation
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment