22 lines
950 B
C++
22 lines
950 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
// Make sure all fields for functionObjects are loaded. Prevents any
|
|
// problems running with execFlowFunctionObjects.
|
|
readFields
|
|
{
|
|
// Where to load it from (if not already in solver)
|
|
functionObjectLibs ("libfieldFunctionObjects.so");
|
|
|
|
type readFields;
|
|
fields (p U k);
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|