openfoam/tutorials/mesh
Mark Olesen 84270ed667 ENH: new PDRblockMesh mesh generation utility (issue #1216)
- While a rectilinear mesh can be created with blockMesh, not every mesh
  created with blockMesh will satisfy the requirements for being a
  rectilinear mesh.

  This alternative to blockMesh uses a single block that is aligned
  with the xy-z directions and specifications of the control points,
  mesh divisions and expansion ratios. For example,

    x
    {
        points  ( -13.28 -0.10 6.0 19.19 );
        nCells  (  10  12 10 );
        ratios  ( 0.2   1  5 );
    }

    y { ... }
    z { ... }

  With only one block, the boundary patch definition is simple and the
  canonical face number is used directly. For example,

    inlet
    {
        type    patch;
        faces   ( 0 );
    }
    outlet
    {
        type    patch;
        faces   ( 1 );
    }

    sides
    {
        type    patch;
        faces   ( 2 3 );
    }

    ...

- After a mesh is defined, it is trivial to retrieve mesh-related
  information such as cell-volume, cell-centres for any i-j-k location
  without an actual polyMesh.

STYLE: remove -noFunctionObjects from blockMesh

- no time loop, so function objects cannot be triggered anyhow.
2019-02-23 15:45:32 +01:00
..
blockMesh STYLE: Updating version to v1812 2018-12-19 18:07:52 +00:00
foamyHexMesh STYLE: fixup very old-style case headers 2019-01-24 08:44:41 +01:00
foamyQuadMesh STYLE: clarify input requirements for extrusion models (#1181) 2019-01-24 09:40:12 +01:00
moveDynamicMesh STYLE: Updating version to v1812 2018-12-19 18:07:52 +00:00
parallel STYLE: Updating version to v1812 2018-12-19 18:07:52 +00:00
PDRblockMesh/box0 ENH: new PDRblockMesh mesh generation utility (issue #1216) 2019-02-23 15:45:32 +01:00
refineMesh/refineFieldDirs BOT: Cleaned up header files 2019-02-06 12:28:23 +00:00
snappyHexMesh ENH: distributedTriSurfaceMesh: auto-decomposition; inside/outside support 2019-02-18 13:29:01 +00:00
stitchMesh/simple-cube1 STYLE: Updating version to v1812 2018-12-19 18:07:52 +00:00