openfoam/tutorials/heatTransfer/solidFoam/movingCone/system/vtkWrite
2021-05-26 11:35:49 +00: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)");
}
// ************************************************************************* //