Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • openfoam openfoam
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 418
    • Issues 418
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 7
    • Merge requests 7
  • Deployments
    • Deployments
    • Releases
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Commits
  • Issue Boards
Collapse sidebar
  • Development
  • openfoamopenfoam
  • Merge requests
  • !470

ENH: Added new multiRegion function object

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Andrew Heather requested to merge feature-multiRegion into develop Jun 14, 2021
  • Overview 1
  • Commits 1
  • Changes 4

Wrapper that clones the supplied object for each region.

Simplifies setting up identical post-processing requirements for multi- region cases. Applies the supplied function to all regions by default.

Example of function object specification:

multiRegion
{
    type            multiRegion;
    libs            (utilityFunctionObjects);
    ...

    function
    {
        // Actual object specification
        type            fieldMinMax;
        libs            (fieldFunctionObjects);
        fields          (<field1> .. <fieldN>);
    }

    // Optional entries
    regions         (region1 region2);
}

Where the entries comprise:
    Property     | Description               | Required    | Default value
    type         | Type name: multiRegion    | yes         |
    function     | Function object sub-dictionary | yes    |
    regions      | List of region names      | no          | all
Edited Jun 16, 2021 by Mark OLESEN
Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: feature-multiRegion