mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
139 lines
3.6 KiB
C
139 lines
3.6 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2008-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 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 "basicReactingMultiphaseParcel.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::basicReactingMultiphaseParcel::basicReactingMultiphaseParcel
|
|
(
|
|
ReactingMultiphaseCloud<basicReactingMultiphaseParcel>& owner,
|
|
const vector& position,
|
|
const label cellI,
|
|
const label tetFaceI,
|
|
const label tetPtI
|
|
)
|
|
:
|
|
ReactingMultiphaseParcel<basicReactingMultiphaseParcel>
|
|
(
|
|
owner,
|
|
position,
|
|
cellI,
|
|
tetFaceI,
|
|
tetPtI
|
|
)
|
|
{}
|
|
|
|
|
|
Foam::basicReactingMultiphaseParcel::basicReactingMultiphaseParcel
|
|
(
|
|
ReactingMultiphaseCloud<basicReactingMultiphaseParcel>& owner,
|
|
const vector& position,
|
|
const label cellI,
|
|
const label tetFaceI,
|
|
const label tetPtI,
|
|
const label typeId,
|
|
const scalar nParticle0,
|
|
const scalar d0,
|
|
const scalar dTarget0,
|
|
const vector& U0,
|
|
const vector& f0,
|
|
const vector& angularMomentum0,
|
|
const vector& torque0,
|
|
const scalarField& YGas0,
|
|
const scalarField& YLiquid0,
|
|
const scalarField& YSolid0,
|
|
const scalarField& Y0,
|
|
const ReactingMultiphaseParcel<basicReactingMultiphaseParcel>::
|
|
constantProperties& constProps
|
|
)
|
|
:
|
|
ReactingMultiphaseParcel<basicReactingMultiphaseParcel>
|
|
(
|
|
owner,
|
|
position,
|
|
cellI,
|
|
tetFaceI,
|
|
tetPtI,
|
|
typeId,
|
|
nParticle0,
|
|
d0,
|
|
dTarget0,
|
|
U0,
|
|
f0,
|
|
angularMomentum0,
|
|
torque0,
|
|
YGas0,
|
|
YLiquid0,
|
|
YSolid0,
|
|
Y0,
|
|
constProps
|
|
)
|
|
{}
|
|
|
|
|
|
Foam::basicReactingMultiphaseParcel::basicReactingMultiphaseParcel
|
|
(
|
|
const Cloud<basicReactingMultiphaseParcel>& cloud,
|
|
Istream& is,
|
|
bool readFields
|
|
)
|
|
:
|
|
ReactingMultiphaseParcel<basicReactingMultiphaseParcel>
|
|
(
|
|
cloud,
|
|
is,
|
|
readFields
|
|
)
|
|
{}
|
|
|
|
|
|
Foam::basicReactingMultiphaseParcel::basicReactingMultiphaseParcel
|
|
(
|
|
const basicReactingMultiphaseParcel& p
|
|
)
|
|
:
|
|
ReactingMultiphaseParcel<basicReactingMultiphaseParcel>(p)
|
|
{}
|
|
|
|
|
|
Foam::basicReactingMultiphaseParcel::basicReactingMultiphaseParcel
|
|
(
|
|
const basicReactingMultiphaseParcel& p,
|
|
const ReactingMultiphaseCloud<basicReactingMultiphaseParcel>& c
|
|
)
|
|
:
|
|
ReactingMultiphaseParcel<basicReactingMultiphaseParcel>(p, c)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::basicReactingMultiphaseParcel::~basicReactingMultiphaseParcel()
|
|
{}
|
|
|
|
|
|
// ************************************************************************* //
|