mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- Added helper classes to simplify the handling of the injector properties - Added new reacting multiphase injection model variant
90 lines
2.4 KiB
C
90 lines
2.4 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2010-2010 OpenCFD Ltd.
|
|
\\/ 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 2 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, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "kinematicParcelInjectionData.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
Foam::kinematicParcelInjectionData::kinematicParcelInjectionData(Istream& is)
|
|
{
|
|
is.check("reading (Px Py Pz)");
|
|
is >> x_;
|
|
|
|
is.check("reading (Ux Uy Uz)");
|
|
is >> U_;
|
|
|
|
is.check("reading d");
|
|
is >> d_;
|
|
|
|
is.check("reading rho");
|
|
is >> rho_;
|
|
|
|
is.check("reading mDot");
|
|
is >> mDot_;
|
|
|
|
is.check("kinematicParcelInjectionData(Istream& is)");
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
|
|
|
|
Foam::Ostream& Foam::operator<<
|
|
(
|
|
Ostream& os,
|
|
const kinematicParcelInjectionData& data
|
|
)
|
|
{
|
|
os << data.x_ << data.U_ << data.d_ << data.rho_ << data.mDot_;
|
|
|
|
return os;
|
|
}
|
|
|
|
|
|
Foam::Istream& Foam::operator>>(Istream& is, kinematicParcelInjectionData& data)
|
|
{
|
|
is.check("reading (Px Py Pz)");
|
|
is >> data.x_;
|
|
|
|
is.check("reading (Ux Uy Uz)");
|
|
is >> data.U_;
|
|
|
|
is.check("reading d");
|
|
is >> data.d_;
|
|
|
|
is.check("reading rho");
|
|
is >> data.rho_;
|
|
|
|
is.check("reading mDot");
|
|
is >> data.mDot_;
|
|
|
|
is.check("operator(Istream&, kinematicParcelInjectionData&)");
|
|
|
|
return is;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|