Difference between revisions of "Category:Function Objects"

From OpenFOAMWiki
(Adding a category page for Function Objects)
 
 
Line 7: Line 7:
 
To find all of the examples of '''Function Objects''' being used in the ''standard'' OpenFOAM tutorials, run the following command to get a list of tutorial cases that used them:
 
To find all of the examples of '''Function Objects''' being used in the ''standard'' OpenFOAM tutorials, run the following command to get a list of tutorial cases that used them:
 
<bash>find $FOAM_TUTORIALS -name controlDict | xargs grep 'functions' -sl</bash>
 
<bash>find $FOAM_TUTORIALS -name controlDict | xargs grep 'functions' -sl</bash>
 +
 +
[[Category:Root category]]

Latest revision as of 10:36, 21 October 2013

Here are listed the pages about Function Objects available in OpenFOAM and contributed by users.

1 Introduction

Basically Function Objects are library functions that can be defined to be loaded in the file controlDict and provide additional capabilities to the solvers, without the need to modify the solvers themselves.

2 Examples

To find all of the examples of Function Objects being used in the standard OpenFOAM tutorials, run the following command to get a list of tutorial cases that used them:

find $FOAM_TUTORIALS -name controlDict | xargs grep 'functions' -sl