1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright held by original author
7 -------------------------------------------------------------------------------
9 This file is part of OpenFOAM.
11 OpenFOAM is free software; you can redistribute it and/or modify it
12 under the terms of the GNU General Public License as published by the
13 Free Software Foundation; either version 2 of the License, or (at your
14 option) any later version.
16 OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21 You should have received a copy of the GNU General Public License
22 along with OpenFOAM; if not, write to the Free Software Foundation,
23 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "BasicReactingMultiphaseParcel.H"
29 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
31 template<class ThermoType>
32 Foam::BasicReactingMultiphaseParcel<ThermoType>::BasicReactingMultiphaseParcel
34 ReactingMultiphaseCloud<BasicReactingMultiphaseParcel<ThermoType> >& owner,
35 const vector& position,
39 ReactingMultiphaseParcel<BasicReactingMultiphaseParcel<ThermoType> >
48 template<class ThermoType>
49 Foam::BasicReactingMultiphaseParcel<ThermoType>::BasicReactingMultiphaseParcel
51 ReactingMultiphaseCloud<BasicReactingMultiphaseParcel<ThermoType> >& owner,
52 const vector& position,
55 const scalar nParticle0,
58 const scalarField& YGas0,
59 const scalarField& YLiquid0,
60 const scalarField& YSolid0,
61 const scalarField& Y0,
63 ReactingMultiphaseParcel<BasicReactingMultiphaseParcel>::
64 constantProperties& constProps
67 ReactingMultiphaseParcel<BasicReactingMultiphaseParcel<ThermoType> >
85 template<class ThermoType>
86 Foam::BasicReactingMultiphaseParcel<ThermoType>::BasicReactingMultiphaseParcel
88 const Cloud<BasicReactingMultiphaseParcel<ThermoType> >& cloud,
93 ReactingMultiphaseParcel<BasicReactingMultiphaseParcel<ThermoType> >
102 template<class ThermoType>
103 Foam::BasicReactingMultiphaseParcel<ThermoType>::BasicReactingMultiphaseParcel
105 const BasicReactingMultiphaseParcel<ThermoType>& p
108 ReactingMultiphaseParcel<BasicReactingMultiphaseParcel<ThermoType> >(p)
112 // * * * * * * * * * * * * * * * * Destructors * * * * * * * * * * * * * * //
114 template<class ThermoType>
115 Foam::BasicReactingMultiphaseParcel<ThermoType>::
116 ~BasicReactingMultiphaseParcel()
120 // ************************************************************************* //