openfoam/tutorials/finiteArea
Mark Olesen 239a7884a6 ENH: more flexible finiteArea patch selection (#2084)
- support wordRes for selecting patch names

- ownerPolyPatch specification is now optional, which simplifies input
  and also supports a faMesh spanning different patches but with a
  single boundary condition.

  Alternatively, can specify more granularity if required.

  ```
  polyMeshPatches  ( "top.*" );

  boundary
  {
      inlet1
      {
          type patch;
          ownerPolyPatch top1;    // <- specific to this portion
          neighbourPolyPatch inlet;
      }
      inlet2
      {
          type patch;
          ownerPolyPatch top2;    // <- specific to this portion
          neighbourPolyPatch inlet;
      }
      outlet
      {
          type patch;
          neighbourPolyPatch outflow;
      }
      bound
      {
          type symmetry;
          neighbourPolyPatch bound;
      }
  }
  ```
2021-06-10 09:25:00 +02:00
..
liquidFilmFoam/cylinder ENH: more flexible finiteArea patch selection (#2084) 2021-06-10 09:25:00 +02:00
sphereSurfactantFoam/sphereTransport TUT: finiteArea: clean up tutorials 2021-06-09 13:41:45 +00:00
surfactantFoam/planeTransport ENH: more flexible finiteArea patch selection (#2084) 2021-06-10 09:25:00 +02:00