openfoam/tutorials/incompressible
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
..
adjointOptimisationFoam TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00
adjointShapeOptimizationFoam/pitzDaily TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00
boundaryFoam/steadyBoundaryLayer TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00
icoFoam TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00
lumpedPointMotion TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00
nonNewtonianIcoFoam/offsetCylinder TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00
overPimpleDyMFoam TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00
overSimpleFoam/aeroFoil TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00
pimpleFoam ENH: more flexible finiteArea patch selection (#2084) 2021-06-10 09:25:00 +02:00
pisoFoam DOC: solverInfo FO: improve header-file documentation 2021-06-09 14:28:18 +00:00
porousSimpleFoam TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00
shallowWaterFoam/squareBump TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00
simpleFoam TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00
SRFPimpleFoam/rotor2D TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00
SRFSimpleFoam/mixer TUT: incompressible: clean up tutorials 2021-06-08 20:15:47 +00:00