mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
fieldValueDelta: Added header to keep ICC-13.1 happy
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) 2012-2013 OpenFOAM Foundation
|
\\ / A nd | Copyright (C) 2012 OpenFOAM Foundation
|
||||||
\\/ M anipulation |
|
\\/ M anipulation |
|
||||||
-------------------------------------------------------------------------------
|
-------------------------------------------------------------------------------
|
||||||
License
|
License
|
||||||
@ -26,6 +26,7 @@ License
|
|||||||
#include "fieldValueDelta.H"
|
#include "fieldValueDelta.H"
|
||||||
#include "ListOps.H"
|
#include "ListOps.H"
|
||||||
#include "Time.H"
|
#include "Time.H"
|
||||||
|
#include "volFields.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||||
|
|
||||||
@ -38,16 +39,15 @@ namespace Foam
|
|||||||
|
|
||||||
template<>
|
template<>
|
||||||
const char*
|
const char*
|
||||||
NamedEnum<fieldValues::fieldValueDelta::operationType, 5>::names[] =
|
NamedEnum<fieldValues::fieldValueDelta::operationType, 4>::names[] =
|
||||||
{
|
{
|
||||||
"add",
|
"add",
|
||||||
"subtract",
|
"subtract",
|
||||||
"min",
|
"min",
|
||||||
"max",
|
"max"
|
||||||
"average"
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const NamedEnum<fieldValues::fieldValueDelta::operationType, 5>
|
const NamedEnum<fieldValues::fieldValueDelta::operationType, 4>
|
||||||
fieldValues::fieldValueDelta::operationTypeNames_;
|
fieldValues::fieldValueDelta::operationTypeNames_;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -159,7 +159,7 @@ void Foam::fieldValues::fieldValueDelta::write()
|
|||||||
|
|
||||||
if (log_)
|
if (log_)
|
||||||
{
|
{
|
||||||
Info<< type() << " " << name_ << " output:" << endl;
|
Info<< type() << " output:" << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool found = false;
|
bool found = false;
|
||||||
@ -180,8 +180,10 @@ void Foam::fieldValues::fieldValueDelta::write()
|
|||||||
{
|
{
|
||||||
Info<< " none" << endl;
|
Info<< " none" << endl;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
Info<< endl;
|
{
|
||||||
|
Info<< endl;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user