mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
This changes simplifies the specification of functionObjects in controlDict and is consistent with the 'libs' option in controlDict to load special solver libraries. Support for the old 'functionObjectLibs' name is supported for backward compatibility.
23 lines
807 B
C++
23 lines
807 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
// Calculate Q (from U)
|
|
Q
|
|
{
|
|
// Where to load it from
|
|
libs ("libutilityFunctionObjects.so");
|
|
|
|
type Q;
|
|
|
|
// Output every
|
|
writeControl writeTime;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|