openfoam/tutorials/finiteArea/surfactantFoam/planeTransport/system/areaWrite
Mark Olesen b7fde1d985 ENH: added areaWrite function object (#1237)
- write finiteArea meshes and fields to standard surface output
  formats (Ensight, VTK, etc).
2019-03-13 19:44:51 +01:00

30 lines
497 B
C++

// -*- C++ -*-
// Use the areaWrite function object
areaWrite
{
type areaWrite;
libs ("libutilityFunctionObjects.so");
log true;
writeControl writeTime;
writeInterval 1;
// Fields to output (words or regex)
fields (".*");
surfaceFormat ensight;
// surfaceFormat vtk;
formatOptions
{
vtk
{
format ascii;
}
}
}
// ************************************************************************* //