mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
functionObjects: Renamed option "adjustableTime" -> "adjustableRunTime" for consistency with Time
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
========= |
|
========= |
|
||||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
\\ / O peration |
|
\\ / O peration |
|
||||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -36,7 +36,7 @@ namespace Foam
|
|||||||
{
|
{
|
||||||
"timeStep",
|
"timeStep",
|
||||||
"outputTime",
|
"outputTime",
|
||||||
"adjustableTime",
|
"adjustableRunTime",
|
||||||
"runTime",
|
"runTime",
|
||||||
"clockTime",
|
"clockTime",
|
||||||
"cpuTime",
|
"cpuTime",
|
||||||
|
|||||||
@ -220,7 +220,7 @@ public:
|
|||||||
return name_;
|
return name_;
|
||||||
}
|
}
|
||||||
|
|
||||||
//- Read the field min/max data
|
//- Read the controls
|
||||||
virtual void read(const dictionary&);
|
virtual void read(const dictionary&);
|
||||||
|
|
||||||
//- Execute, currently does nothing
|
//- Execute, currently does nothing
|
||||||
|
|||||||
@ -179,7 +179,7 @@ public:
|
|||||||
return name_;
|
return name_;
|
||||||
}
|
}
|
||||||
|
|
||||||
//- Read the field min/max data
|
//- Read the set of fields from dictionary
|
||||||
virtual void read(const dictionary&);
|
virtual void read(const dictionary&);
|
||||||
|
|
||||||
//- Execute, currently does nothing
|
//- Execute, currently does nothing
|
||||||
|
|||||||
@ -175,7 +175,7 @@ public:
|
|||||||
return name_;
|
return name_;
|
||||||
}
|
}
|
||||||
|
|
||||||
//- Read the field min/max data
|
//- Read the controls
|
||||||
virtual void read(const dictionary&);
|
virtual void read(const dictionary&);
|
||||||
|
|
||||||
//- Execute, currently does nothing
|
//- Execute, currently does nothing
|
||||||
|
|||||||
@ -168,7 +168,7 @@ public:
|
|||||||
return name_;
|
return name_;
|
||||||
}
|
}
|
||||||
|
|
||||||
//- Read the field min/max data
|
//- Read the controls
|
||||||
virtual void read(const dictionary&);
|
virtual void read(const dictionary&);
|
||||||
|
|
||||||
//- Execute, currently does nothing
|
//- Execute, currently does nothing
|
||||||
|
|||||||
@ -67,7 +67,7 @@ functions
|
|||||||
// Execute upon options:
|
// Execute upon options:
|
||||||
// timeStep
|
// timeStep
|
||||||
// outputTime
|
// outputTime
|
||||||
// adjustableTime
|
// adjustableRunTime
|
||||||
// runTime
|
// runTime
|
||||||
// clockTime
|
// clockTime
|
||||||
// cpuTime
|
// cpuTime
|
||||||
@ -81,7 +81,7 @@ functions
|
|||||||
outputInterval 1; // (timeStep, outputTime)
|
outputInterval 1; // (timeStep, outputTime)
|
||||||
|
|
||||||
// Interval of time (sec) to write down(
|
// Interval of time (sec) to write down(
|
||||||
writeInterval 10.5 //(adjustableTime, runTime, clockTime, cpuTime)
|
writeInterval 10.5 //(adjustableRunTime, runTime, clockTime, cpuTime)
|
||||||
}
|
}
|
||||||
|
|
||||||
dumpObjects
|
dumpObjects
|
||||||
@ -96,7 +96,7 @@ functions
|
|||||||
// When to write:
|
// When to write:
|
||||||
// timeStep (with optional outputInterval)
|
// timeStep (with optional outputInterval)
|
||||||
// outputTime (with optional outputInterval)
|
// outputTime (with optional outputInterval)
|
||||||
// adjustableTime
|
// adjustableRunTime
|
||||||
// runTime
|
// runTime
|
||||||
// clockTime
|
// clockTime
|
||||||
// cpuTime
|
// cpuTime
|
||||||
@ -105,7 +105,7 @@ functions
|
|||||||
// Write every writeInterval (only valid for timeStemp, outputTime)
|
// Write every writeInterval (only valid for timeStemp, outputTime)
|
||||||
outputInterval 1;
|
outputInterval 1;
|
||||||
|
|
||||||
// Interval of time (valid for adjustableTime, runTime, clockTime,
|
// Interval of time (valid for adjustableRunTime, runTime, clockTime,
|
||||||
// cpuTime)
|
// cpuTime)
|
||||||
writeInterval 10.5;
|
writeInterval 10.5;
|
||||||
|
|
||||||
|
|||||||
@ -163,13 +163,13 @@ public:
|
|||||||
|
|
||||||
// Member Functions
|
// Member Functions
|
||||||
|
|
||||||
//- Return name of the set of field min/max
|
//- Return name of the functionObject
|
||||||
virtual const word& name() const
|
virtual const word& name() const
|
||||||
{
|
{
|
||||||
return name_;
|
return name_;
|
||||||
}
|
}
|
||||||
|
|
||||||
//- Read the field min/max data
|
//- Read the controls
|
||||||
virtual void read(const dictionary&);
|
virtual void read(const dictionary&);
|
||||||
|
|
||||||
//- Execute, currently does nothing
|
//- Execute, currently does nothing
|
||||||
|
|||||||
@ -220,7 +220,7 @@ public:
|
|||||||
return name_;
|
return name_;
|
||||||
}
|
}
|
||||||
|
|
||||||
//- Read the field min/max data
|
//- Read the controls
|
||||||
virtual void read(const dictionary&);
|
virtual void read(const dictionary&);
|
||||||
|
|
||||||
//- Execute, currently does nothing
|
//- Execute, currently does nothing
|
||||||
|
|||||||
@ -67,7 +67,7 @@ functions
|
|||||||
// Execute upon options:
|
// Execute upon options:
|
||||||
// timeStep
|
// timeStep
|
||||||
// outputTime
|
// outputTime
|
||||||
// adjustableTime
|
// adjustableRunTime
|
||||||
// runTime
|
// runTime
|
||||||
// clockTime
|
// clockTime
|
||||||
// cpuTime
|
// cpuTime
|
||||||
@ -81,7 +81,7 @@ functions
|
|||||||
outputInterval 1; // (timeStep, outputTime)
|
outputInterval 1; // (timeStep, outputTime)
|
||||||
|
|
||||||
// Interval of time (sec) to write down(
|
// Interval of time (sec) to write down(
|
||||||
writeInterval 10.5 //(adjustableTime, runTime, clockTime, cpuTime)
|
writeInterval 10.5 //(adjustableRunTime, runTime, clockTime, cpuTime)
|
||||||
}
|
}
|
||||||
|
|
||||||
dumpObjects
|
dumpObjects
|
||||||
@ -96,7 +96,7 @@ functions
|
|||||||
// When to write:
|
// When to write:
|
||||||
// timeStep (with optional outputInterval)
|
// timeStep (with optional outputInterval)
|
||||||
// outputTime (with optional outputInterval)
|
// outputTime (with optional outputInterval)
|
||||||
// adjustableTime
|
// adjustableRunTime
|
||||||
// runTime
|
// runTime
|
||||||
// clockTime
|
// clockTime
|
||||||
// cpuTime
|
// cpuTime
|
||||||
@ -105,7 +105,7 @@ functions
|
|||||||
// Write every writeInterval (only valid for timeStemp, outputTime)
|
// Write every writeInterval (only valid for timeStemp, outputTime)
|
||||||
outputInterval 1;
|
outputInterval 1;
|
||||||
|
|
||||||
// Interval of time (valid for adjustableTime, runTime, clockTime,
|
// Interval of time (valid for adjustableRunTime, runTime, clockTime,
|
||||||
// cpuTime)
|
// cpuTime)
|
||||||
writeInterval 10.5;
|
writeInterval 10.5;
|
||||||
|
|
||||||
|
|||||||
@ -34,7 +34,7 @@ Description
|
|||||||
|
|
||||||
\li \c timeStep
|
\li \c timeStep
|
||||||
\li \c outputTime
|
\li \c outputTime
|
||||||
\li \c adjustableTime
|
\li \c adjustableRunTime
|
||||||
\li \c runTime
|
\li \c runTime
|
||||||
\li \c clockTime
|
\li \c clockTime
|
||||||
\li \c cpuTime
|
\li \c cpuTime
|
||||||
|
|||||||
Reference in New Issue
Block a user