mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
35 lines
1.1 KiB
C++
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 ();
|
|
}
|
|
|
|
// ************************************************************************* //
|