/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2015 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 .
\*---------------------------------------------------------------------------*/
#include "solidParticle.H"
#include "IOstreams.H"
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
const std::size_t Foam::solidParticle::sizeofFields
(
sizeof(solidParticle) - sizeof(particle)
);
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::solidParticle::solidParticle
(
const polyMesh& mesh,
Istream& is,
bool readFields
)
:
particle(mesh, is, readFields)
{
if (readFields)
{
if (is.format() == IOstream::ASCII)
{
d_ = readScalar(is);
is >> U_;
}
else
{
is.read(reinterpret_cast(&d_), sizeofFields);
}
}
// Check state of Istream
is.check("solidParticle::solidParticle(Istream&)");
}
void Foam::solidParticle::readFields(Cloud& c)
{
if (!c.size())
{
return;
}
particle::readFields(c);
IOField d(c.fieldIOobject("d", IOobject::MUST_READ));
c.checkFieldIOobject(c, d);
IOField U(c.fieldIOobject("U", IOobject::MUST_READ));
c.checkFieldIOobject(c, U);
label i = 0;
forAllIter(Cloud, c, iter)
{
solidParticle& p = iter();
p.d_ = d[i];
p.U_ = U[i];
i++;
}
}
void Foam::solidParticle::writeFields(const Cloud& c)
{
particle::writeFields(c);
label np = c.size();
IOField d(c.fieldIOobject("d", IOobject::NO_READ), np);
IOField U(c.fieldIOobject("U", IOobject::NO_READ), np);
label i = 0;
forAllConstIter(Cloud, c, iter)
{
const solidParticle& p = iter();
d[i] = p.d_;
U[i] = p.U_;
i++;
}
d.write();
U.write();
}
// * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
Foam::Ostream& Foam::operator<<(Ostream& os, const solidParticle& p)
{
if (os.format() == IOstream::ASCII)
{
os << static_cast(p)
<< token::SPACE << p.d_
<< token::SPACE << p.U_;
}
else
{
os << static_cast(p);
os.write
(
reinterpret_cast(&p.d_),
solidParticle::sizeofFields
);
}
// Check state of Ostream
os.check("Ostream& operator<<(Ostream&, const solidParticle&)");
return os;
}
// ************************************************************************* //