37 lines
1.2 KiB
C++
37 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2406 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
writeObjects1
|
|
{
|
|
// Mandatory entries
|
|
type writeObjects;
|
|
libs (utilityFunctionObjects);
|
|
|
|
// Optional entries
|
|
writeOption log;
|
|
|
|
// Conditional entries
|
|
// field U;
|
|
// fields ( ".*" );
|
|
objects ( ".*" );
|
|
|
|
// Inherited entries
|
|
region region0;
|
|
enabled true;
|
|
log true;
|
|
timeStart 0;
|
|
timeEnd 1000;
|
|
executeControl timeStep;
|
|
executeInterval -1;
|
|
writeControl onEnd;
|
|
writeInterval -1;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|