Difference between revisions of "ExecFlowFunctionObjects"

From OpenFOAMWiki
(Tips)
m (Tips)
 
Line 49: Line 49:
 
* A minimalistic variant of {{tt|execFlowFunctionObjects}} for relying solely on function objects is available here: [https://github.com/wyldckat/execFunctionObjects wyldckat@github:execFunctionObjects]
 
* A minimalistic variant of {{tt|execFlowFunctionObjects}} for relying solely on function objects is available here: [https://github.com/wyldckat/execFunctionObjects wyldckat@github:execFunctionObjects]
 
* execFlowFunctionObjects can also be used with [[Contrib_simpleFunctionObjects|simpleFunctionObjects]]
 
* execFlowFunctionObjects can also be used with [[Contrib_simpleFunctionObjects|simpleFunctionObjects]]
* The following thread (at CFD-Online) explains how to get density-field for compressible flow (in post processing using execFlowFunctionObjects: [http://www.cfd-online.com/Forums/openfoam/75049-how-get-density-field-compressible-flow.html#post254920 How to get density-field for compressible flow?]
+
* The following thread (at CFD-Online) explains how to get density-field for compressible flow (in post processing using execFlowFunctionObjects): [http://www.cfd-online.com/Forums/openfoam/75049-how-get-density-field-compressible-flow.html#post254920 How to get density-field for compressible flow?]

Latest revision as of 11:10, 9 September 2013

1 Name

execFlowFunctionObjects - Executes the set of functionObjects specified in the selected dictionary (which defaults to system/controlDict) for the selected set of times.

Valid versions: OF Version 22.png

2 Synopsis

execFlowFunctionObjects [OPTIONS]

3 Description

Quoting from OpenFOAM's source code [1]:

Executes the set of functionObjects specified in the selected dictionary (which defaults to system/controlDict) for the selected set of times. Alternative dictionaries should be placed in the system/ folder.

The flow (p-U) and optionally turbulence fields are available for the function objects to operate on allowing forces and other related properties to be calculated in addition to cutting planes etc.


-noZero

Exclude the 0 directory from the times list

-time RANGES

Select time steps. RANGES follows the time selection rules

-latestTime

Apply only on the latest time available

-constant

Include the constant directory in the times list

-parallel

Run the utility in parallel

-roots "(DIR1 [...DIRN])"

Directories through which the data are distributed

-region NAME

Specify a mesh region by its NAME

-dict FILE

Read control dictionary from specified location. Note: but it will still use the main system/controlDict for the base runtime options, except the function objects.

-case DIR

Execute the command on the case directory DIR. If not provided, use the current directory

-noFlow

suppress creating flow models

-noFunctionObjects

Skip the execution of the functionObjects - note: this pretty much ruins the usage of this application.

-help

Display the help and exit

4 Tips