mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
end of Time::operator++. This allows to know if the next timeIndex will be a dumping time. The function object "partialWrite" modifyes the write option of the those fields which will be written down at given intervals of the overall outout times.
148 lines
3.6 KiB
C
148 lines
3.6 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2013 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
|
|
{
|
|
defineTypeNameAndDebug(cloudInfo, 0);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
|
|
|
void Foam::cloudInfo::writeFileHeader(const label i)
|
|
{
|
|
file(i) << "# Time" << tab << "nParcels" << tab << "mass" << endl;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::cloudInfo::cloudInfo
|
|
(
|
|
const word& name,
|
|
const objectRegistry& obr,
|
|
const dictionary& dict,
|
|
const bool loadFromFiles
|
|
)
|
|
:
|
|
functionObjectFile(obr, name),
|
|
name_(name),
|
|
obr_(obr),
|
|
active_(true)
|
|
{
|
|
read(dict);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::cloudInfo::~cloudInfo()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
void Foam::cloudInfo::read(const dictionary& dict)
|
|
{
|
|
if (active_)
|
|
{
|
|
functionObjectFile::resetNames(dict.lookup("clouds"));
|
|
|
|
Info<< type() << ": ";
|
|
if (names().size())
|
|
{
|
|
Info<< "applying to clouds:" << nl;
|
|
forAllConstIter(wordHashSet, names(), iter)
|
|
{
|
|
Info<< " " << iter.key() << nl;
|
|
}
|
|
Info<< endl;
|
|
}
|
|
else
|
|
{
|
|
Info<< "no clouds to be processed" << nl << endl;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
void Foam::cloudInfo::execute()
|
|
{
|
|
// Do nothing
|
|
}
|
|
|
|
|
|
void Foam::cloudInfo::end()
|
|
{
|
|
// Do nothing
|
|
}
|
|
|
|
|
|
void Foam::cloudInfo::timeSet()
|
|
{
|
|
// Do nothing
|
|
}
|
|
|
|
|
|
void Foam::cloudInfo::write()
|
|
{
|
|
if (active_)
|
|
{
|
|
functionObjectFile::write();
|
|
|
|
label i = 0;
|
|
forAllConstIter(wordHashSet, names(), iter)
|
|
{
|
|
const word& cloudName = iter.key();
|
|
|
|
const kinematicCloud& cloud =
|
|
obr_.lookupObject<kinematicCloud>(cloudName);
|
|
|
|
label nParcels = returnReduce(cloud.nParcels(), sumOp<label>());
|
|
scalar massInSystem =
|
|
returnReduce(cloud.massInSystem(), sumOp<scalar>());
|
|
|
|
if (Pstream::master())
|
|
{
|
|
file(i)
|
|
<< obr_.time().value() << token::TAB
|
|
<< nParcels << token::TAB
|
|
<< massInSystem << endl;
|
|
}
|
|
|
|
i++;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|