mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
functionObjects: Changed options 'outputControl' -> 'writeControl' and 'outputInterval' -> 'writeInterval'
for consistency with the time controls in controlDict and to avoid unnecessary confusion. All code and tutorials have been updated. The old names 'outputControl' and 'outputInterval' are but supported for backward compatibility but deprecated.
This commit is contained in:
@ -11,7 +11,7 @@ cuttingPlane
|
||||
type surfaces;
|
||||
functionObjectLibs ("libsampling.so");
|
||||
|
||||
outputControl outputTime;
|
||||
writeControl outputTime;
|
||||
|
||||
surfaceFormat vtk;
|
||||
fields ( p U );
|
||||
|
||||
@ -15,7 +15,7 @@ Q
|
||||
type Q;
|
||||
|
||||
// Output every
|
||||
outputControl outputTime;
|
||||
writeControl outputTime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@ -12,7 +12,7 @@ forces
|
||||
|
||||
functionObjectLibs ( "libforces.so" );
|
||||
|
||||
outputControl timeStep;
|
||||
writeControl timeStep;
|
||||
timeInterval 1;
|
||||
|
||||
log yes;
|
||||
|
||||
@ -10,7 +10,7 @@ surfaces
|
||||
{
|
||||
type surfaces;
|
||||
functionObjectLibs ("libsampling.so");
|
||||
outputControl outputTime;
|
||||
writeControl outputTime;
|
||||
|
||||
surfaceFormat vtk;
|
||||
fields (p U Q);
|
||||
|
||||
@ -51,8 +51,8 @@ functions
|
||||
{
|
||||
type forces;
|
||||
functionObjectLibs ( "libforces.so" );
|
||||
outputControl timeStep;
|
||||
outputInterval 10;
|
||||
writeControl timeStep;
|
||||
writeInterval 10;
|
||||
patches (wing);
|
||||
pName p;
|
||||
UName U;
|
||||
|
||||
Reference in New Issue
Block a user