mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
Rather than requiring each functionObject to handle failed construction internally (using the active_ flag) the static member function "viable" is provided which returns true if construction of the functionObject is likely to be successful. Failed construction is then handled by the wrapper-class which constructs the functionObject, e.g. "OutputFilterFunctionObject".
152 lines
3.7 KiB
C
152 lines
3.7 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2012-2016 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "cloudInfo.H"
|
|
#include "dictionary.H"
|
|
#include "kinematicCloud.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace functionObjects
|
|
{
|
|
defineTypeNameAndDebug(cloudInfo, 0);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
|
|
|
void Foam::functionObjects::cloudInfo::writeFileHeader(const label i)
|
|
{
|
|
writeHeader(file(), "Cloud information");
|
|
writeCommented(file(), "Time");
|
|
writeTabbed(file(), "nParcels");
|
|
writeTabbed(file(), "mass");
|
|
file() << endl;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::functionObjects::cloudInfo::cloudInfo
|
|
(
|
|
const word& name,
|
|
const objectRegistry& obr,
|
|
const dictionary& dict,
|
|
const bool loadFromFiles
|
|
)
|
|
:
|
|
functionObjectFiles(obr, name),
|
|
name_(name),
|
|
obr_(obr)
|
|
{
|
|
read(dict);
|
|
}
|
|
|
|
|
|
bool Foam::functionObjects::cloudInfo::viable
|
|
(
|
|
const word& name,
|
|
const objectRegistry& obr,
|
|
const dictionary& dict,
|
|
const bool loadFromFiles
|
|
)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::functionObjects::cloudInfo::~cloudInfo()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void Foam::functionObjects::cloudInfo::read(const dictionary& dict)
|
|
{
|
|
functionObjectFiles::resetNames(dict.lookup("clouds"));
|
|
|
|
Info<< type() << " " << name_ << ": ";
|
|
if (names().size())
|
|
{
|
|
Info<< "applying to clouds:" << nl;
|
|
forAll(names(), i)
|
|
{
|
|
Info<< " " << names()[i] << nl;
|
|
}
|
|
Info<< endl;
|
|
}
|
|
else
|
|
{
|
|
Info<< "no clouds to be processed" << nl << endl;
|
|
}
|
|
}
|
|
|
|
|
|
void Foam::functionObjects::cloudInfo::execute()
|
|
{}
|
|
|
|
|
|
void Foam::functionObjects::cloudInfo::end()
|
|
{}
|
|
|
|
|
|
void Foam::functionObjects::cloudInfo::timeSet()
|
|
{}
|
|
|
|
|
|
void Foam::functionObjects::cloudInfo::write()
|
|
{
|
|
functionObjectFiles::write();
|
|
|
|
forAll(names(), i)
|
|
{
|
|
const word& cloudName = names()[i];
|
|
|
|
const kinematicCloud& cloud =
|
|
obr_.lookupObject<kinematicCloud>(cloudName);
|
|
|
|
label nParcels = returnReduce(cloud.nParcels(), sumOp<label>());
|
|
scalar massInSystem =
|
|
returnReduce(cloud.massInSystem(), sumOp<scalar>());
|
|
|
|
if (Pstream::master())
|
|
{
|
|
writeTime(file(i));
|
|
file(i)
|
|
<< token::TAB
|
|
<< nParcels << token::TAB
|
|
<< massInSystem << endl;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|