mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
functionObjects: 'output:' -> 'write:' for consistency with the naming of the 'write' function
This commit is contained in:
@ -135,7 +135,7 @@ void Foam::functionObjects::fieldAverage::calcAverages()
|
||||
}
|
||||
|
||||
Log
|
||||
<< type() << " " << name() << " output:" << nl
|
||||
<< type() << " " << name() << " write:" << nl
|
||||
<< " Calculating averages" << nl;
|
||||
|
||||
addMeanSqrToPrime2Mean<scalar, scalar>();
|
||||
|
||||
@ -151,7 +151,7 @@ bool Foam::functionObjects::fieldMinMax::write(const bool postProcess)
|
||||
writeFiles::write();
|
||||
|
||||
if (!location_) writeTime(file());
|
||||
Log << type() << " " << name() << " output:" << nl;
|
||||
Log << type() << " " << name() << " write:" << nl;
|
||||
|
||||
forAll(fieldSet_, fieldi)
|
||||
{
|
||||
|
||||
@ -110,7 +110,7 @@ bool Foam::functionObjects::fieldValue::write(const bool postProcess)
|
||||
{
|
||||
writeFiles::write();
|
||||
|
||||
Log << type() << " " << name() << " output:" << nl;
|
||||
Log << type() << " " << name() << " write:" << nl;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -179,7 +179,7 @@ bool Foam::functionObjects::fieldValues::fieldValueDelta::write
|
||||
writeTime(file());
|
||||
}
|
||||
|
||||
Log << type() << " " << name() << " output:" << endl;
|
||||
Log << type() << " " << name() << " write:" << endl;
|
||||
|
||||
bool found = false;
|
||||
processFields<scalar>(found);
|
||||
|
||||
@ -117,7 +117,7 @@ bool Foam::functionObjects::histogram::execute(const bool postProcess)
|
||||
|
||||
bool Foam::functionObjects::histogram::write(const bool postProcess)
|
||||
{
|
||||
Log << type() << " " << name() << " output:" << nl;
|
||||
Log << type() << " " << name() << " write:" << nl;
|
||||
|
||||
const fvMesh& mesh = refCast<const fvMesh>(obr_);
|
||||
|
||||
|
||||
@ -313,7 +313,7 @@ bool Foam::functionObjects::nearWallFields::execute(const bool postProcess)
|
||||
}
|
||||
|
||||
Log << type() << " " << name()
|
||||
<< " output:" << nl
|
||||
<< " write:" << nl
|
||||
<< " Sampling fields to " << time_.timeName()
|
||||
<< endl;
|
||||
|
||||
|
||||
@ -392,7 +392,7 @@ bool Foam::functionObjects::regionSizeDistribution::write
|
||||
const bool postProcess
|
||||
)
|
||||
{
|
||||
Info<< type() << " " << name() << " output:" << nl;
|
||||
Info<< type() << " " << name() << " write:" << nl;
|
||||
|
||||
const fvMesh& mesh = refCast<const fvMesh>(obr_);
|
||||
|
||||
|
||||
@ -431,7 +431,7 @@ bool Foam::functionObjects::streamLine::execute(const bool postProcess)
|
||||
|
||||
bool Foam::functionObjects::streamLine::write(const bool postProcess)
|
||||
{
|
||||
Info<< type() << " " << name() << " output:" << nl;
|
||||
Info<< type() << " " << name() << " write:" << nl;
|
||||
|
||||
const Time& runTime = obr_.time();
|
||||
const fvMesh& mesh = dynamic_cast<const fvMesh&>(obr_);
|
||||
|
||||
@ -85,7 +85,7 @@ bool Foam::functionObjects::surfaceInterpolate::execute
|
||||
const bool postProcess
|
||||
)
|
||||
{
|
||||
Info<< type() << " " << name() << " output:" << nl;
|
||||
Info<< type() << " " << name() << " write:" << nl;
|
||||
|
||||
// Clear out any previously loaded fields
|
||||
ssf_.clear();
|
||||
@ -111,7 +111,7 @@ bool Foam::functionObjects::surfaceInterpolate::write
|
||||
const bool postProcess
|
||||
)
|
||||
{
|
||||
Info<< type() << " " << name() << " output:" << nl;
|
||||
Info<< type() << " " << name() << " write:" << nl;
|
||||
|
||||
Info<< " Writing interpolated surface fields to "
|
||||
<< obr_.time().timeName() << endl;
|
||||
|
||||
Reference in New Issue
Block a user