openfoam/tutorials/incompressible/pimpleFoam/laminar/movingCone/system/vtkWrite
2019-08-30 16:45:45 +02:00

18 lines
362 B
C++

// -*- C++ -*-
// Minimal example of using the vtkWrite function object.
vtkWrite
{
type vtkWrite;
libs (utilityFunctionObjects);
writeControl writeTime;
boundary false;
// Fields to output (words or regex)
fields (U p "(k|epsilon|omega)");
}
// ************************************************************************* //