Files
openfoam/etc/caseDicts/annotated/adiosWriteDict
Andrew Heather e3796745ed CONFIG: Updated headers to v2106
Minor clean-up
2021-06-28 09:14:42 +01:00

35 lines
1.1 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2106 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
// Embed output with ADIOS2
type adiosWrite;
libs ("libadiosFunctionObjects.so");
// Additional items to write, or items to write (when explicit)
write
{
// Only use explicitly named fields/clouds.
// Otherwise select all fields/clouds that have AUTO_WRITE on.
explicit false;
// Volume fields
fields ();
// Parcel clouds
clouds ();
}
// Items to suppress from writing
ignore
{
fields ();
clouds ();
}
// ************************************************************************* //