mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Renamed folder -> directory for consistency with POSIX and the rest of OpenFOAM
This commit is contained in:
@ -38,7 +38,7 @@ defineTypeNameAndDebug(writeDictionary, 0);
|
||||
|
||||
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
|
||||
|
||||
bool Foam::writeDictionary::tryFolder
|
||||
bool Foam::writeDictionary::tryDirectory
|
||||
(
|
||||
const label dictI,
|
||||
const word& location,
|
||||
@ -167,16 +167,16 @@ void Foam::writeDictionary::execute()
|
||||
}
|
||||
else
|
||||
{
|
||||
bool processed = tryFolder(i, obr_.time().timeName(), firstDict);
|
||||
bool processed = tryDirectory(i, obr_.time().timeName(), firstDict);
|
||||
|
||||
if (!processed)
|
||||
{
|
||||
processed = tryFolder(i, obr_.time().constant(), firstDict);
|
||||
processed = tryDirectory(i, obr_.time().constant(), firstDict);
|
||||
}
|
||||
|
||||
if (!processed)
|
||||
{
|
||||
processed = tryFolder(i, obr_.time().system(), firstDict);
|
||||
processed = tryDirectory(i, obr_.time().system(), firstDict);
|
||||
}
|
||||
|
||||
if (!processed)
|
||||
|
||||
@ -80,7 +80,7 @@ protected:
|
||||
// Private Member Functions
|
||||
|
||||
//- Helper function to write the dictionary if found at location
|
||||
bool tryFolder
|
||||
bool tryDirectory
|
||||
(
|
||||
const label dictI,
|
||||
const word& location,
|
||||
|
||||
@ -84,7 +84,7 @@ Where:
|
||||
\endtable
|
||||
|
||||
The sub-dictionary name \c myFunctionObject is chosen by the user, and is
|
||||
typically used as the name of the output folder for any derived data. The
|
||||
typically used as the name of the output directory for any derived data. The
|
||||
\c type entry defines the type of function object properties that follow.
|
||||
Since the function objects are packaged into separate libraries, the user must
|
||||
tell the code where to find the function object implementation, identified
|
||||
|
||||
@ -28,7 +28,7 @@ Group
|
||||
grpFieldFunctionObjects
|
||||
|
||||
Description
|
||||
This function object reads fields from the time folders and adds them to
|
||||
This function object reads fields from the time directories and adds them to
|
||||
the mesh database for further post-processing.
|
||||
|
||||
Example of function object specification:
|
||||
|
||||
@ -29,7 +29,7 @@ Group
|
||||
|
||||
Description
|
||||
This function object evaluates and outputs the shear stress at wall
|
||||
patches. The result is written as a volVectorField to time folders as
|
||||
patches. The result is written as a volVectorField to time directories as
|
||||
field 'wallShearStress'
|
||||
|
||||
\f[
|
||||
|
||||
@ -29,7 +29,7 @@ Group
|
||||
|
||||
Description
|
||||
Evaluates and outputs turbulence y+ for LES models. Values written to
|
||||
time folders as field 'yPlusLES'
|
||||
time directories as field 'yPlusLES'
|
||||
|
||||
SourceFiles
|
||||
yPlusLES.C
|
||||
|
||||
@ -29,7 +29,7 @@ Group
|
||||
|
||||
Description
|
||||
Evaluates and outputs turbulence y+ for RAS models. Values written to
|
||||
time folders as field 'yPlusRAS'
|
||||
time directories as field 'yPlusRAS'
|
||||
|
||||
SourceFiles
|
||||
yPlusRAS.C
|
||||
|
||||
Reference in New Issue
Block a user