mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
functionObjects: Corrected typos and various errors in new classes
This commit is contained in:
@ -234,7 +234,7 @@ void Foam::DESModelRegions::write()
|
||||
obr_.lookupObject<volScalarField>(type());
|
||||
|
||||
|
||||
Info<< type() << " " << name_ << " output:" << nl;
|
||||
Info<< type() << " " << name_ << " output:" << nl
|
||||
<< " writing field " << DESModelRegions.name() << nl
|
||||
<< endl;
|
||||
|
||||
|
||||
@ -33,7 +33,7 @@ License
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
defineTypeNameAndDebug(Lambda2, 0);
|
||||
defineTypeNameAndDebug(Lambda2, 0);
|
||||
}
|
||||
|
||||
|
||||
@ -159,7 +159,7 @@ void Foam::Lambda2::write()
|
||||
if (active_)
|
||||
{
|
||||
const volScalarField& Lambda2 =
|
||||
obr_.lookupObject<volScalarField>(type())
|
||||
obr_.lookupObject<volScalarField>(type());
|
||||
|
||||
Info<< type() << " " << name_ << " output:" << nl
|
||||
<< " writing field " << Lambda2.name() << nl
|
||||
|
||||
@ -35,7 +35,7 @@ License
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
defineTypeNameAndDebug(Peclet, 0);
|
||||
defineTypeNameAndDebug(Peclet, 0);
|
||||
}
|
||||
|
||||
|
||||
@ -211,7 +211,7 @@ void Foam::Peclet::write()
|
||||
if (active_)
|
||||
{
|
||||
const surfaceScalarField& Peclet =
|
||||
mesh.lookupObject<surfaceScalarField>(type());
|
||||
obr_.lookupObject<surfaceScalarField>(type());
|
||||
|
||||
Info<< type() << " " << name_ << " output:" << nl
|
||||
<< " writing field " << Peclet.name() << nl
|
||||
|
||||
@ -152,7 +152,7 @@ void Foam::Q::write()
|
||||
if (active_)
|
||||
{
|
||||
const volScalarField& Q =
|
||||
mesh.lookupObject<volScalarField>(type())
|
||||
obr_.lookupObject<volScalarField>(type());
|
||||
|
||||
Info<< type() << " " << name_ << " output:" << nl
|
||||
<< " writing field " << Q.name() << nl
|
||||
|
||||
@ -31,7 +31,7 @@ License
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
defineTypeNameAndDebug(pressureTools, 0);
|
||||
defineTypeNameAndDebug(pressureTools, 0);
|
||||
}
|
||||
|
||||
|
||||
@ -324,7 +324,7 @@ void Foam::pressureTools::write()
|
||||
if (active_)
|
||||
{
|
||||
const volScalarField& pResult =
|
||||
obr_.lookupObject<volScalarField>(pName())
|
||||
obr_.lookupObject<volScalarField>(pName());
|
||||
|
||||
Info<< type() << " " << name_ << " output:" << nl
|
||||
<< " writing field " << pResult.name() << nl
|
||||
|
||||
@ -36,7 +36,7 @@ License
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
defineTypeNameAndDebug(yPlusLES, 0);
|
||||
defineTypeNameAndDebug(yPlusLES, 0);
|
||||
}
|
||||
|
||||
|
||||
@ -322,7 +322,7 @@ void Foam::yPlusLES::write()
|
||||
functionObjectFile::write();
|
||||
|
||||
const volScalarField& yPlusLES =
|
||||
obr_.lookupObject<volScalarField>(type())
|
||||
obr_.lookupObject<volScalarField>(type());
|
||||
|
||||
if (log_)
|
||||
{
|
||||
|
||||
@ -307,7 +307,7 @@ void Foam::yPlusRAS::write()
|
||||
functionObjectFile::write();
|
||||
|
||||
const volScalarField& yPlusRAS =
|
||||
mesh.lookupObject<volScalarField>(type())
|
||||
obr_.lookupObject<volScalarField>(type());
|
||||
|
||||
if (log_)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user