Based on patch contributed by Tobias Holzmann Resolves feature-request https://bugs.openfoam.org/view.php?id=2525
22 lines
760 B
C++
22 lines
760 B
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Web: www.OpenFOAM.org
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Description
|
|
Calculates the Eulerian time derivative of a field.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
type ddt;
|
|
libs ("libfieldFunctionObjects.so");
|
|
|
|
field <fieldName>;
|
|
|
|
executeControl writeTime;
|
|
writeControl writeTime;
|
|
|
|
// ************************************************************************* //
|