BUG: Renamed fluidThermo[Cloud|Parcel] back to basicThermo[Cloud|Parcel]

This commit is contained in:
andy
2013-05-03 10:42:36 +01:00
parent c52a2900e7
commit 620f16b06e
6 changed files with 29 additions and 27 deletions

View File

@ -37,7 +37,7 @@ Description
#include "fvCFD.H"
#include "turbulenceModel.H"
#include "fluidThermoCloud.H"
#include "basicThermoCloud.H"
#include "coalCloud.H"
#include "psiCombustionModel.H"
#include "fvIOoptionList.H"

View File

@ -9,7 +9,7 @@ coalCloud coalParcels
);
Info<< "\nConstructing limestone cloud" << endl;
fluidThermoCloud limestoneParcels
basicThermoCloud limestoneParcels
(
"limestoneCloud1",
rho,

View File

@ -22,18 +22,18 @@ License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Class
Foam::fluidThermoCloud
Foam::basicThermoCloud
Description
Cloud class to introduce thermodynamic parcels
\*---------------------------------------------------------------------------*/
#ifndef fluidThermoCloud_H
#define fluidThermoCloud_H
#ifndef basicThermoCloud_H
#define basicThermoCloud_H
#include "ThermoCloud.H"
#include "fluidThermoParcel.H"
#include "basicThermoParcel.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -45,10 +45,10 @@ namespace Foam
<
Cloud
<
fluidThermoParcel
basicThermoParcel
>
>
> fluidThermoCloud;
> basicThermoCloud;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -22,18 +22,18 @@ License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Class
Foam::fluidThermoParcel
Foam::basicThermoParcel
Description
Definition of basic thermo parcel
SourceFiles
fluidThermoParcel.C
basicThermoParcel.C
\*---------------------------------------------------------------------------*/
#ifndef fluidThermoParcel_H
#define fluidThermoParcel_H
#ifndef basicThermoParcel_H
#define basicThermoParcel_H
#include "contiguous.H"
#include "particle.H"
@ -44,10 +44,10 @@ SourceFiles
namespace Foam
{
typedef ThermoParcel<KinematicParcel<particle> > fluidThermoParcel;
typedef ThermoParcel<KinematicParcel<particle> > basicThermoParcel;
template<>
inline bool contiguous<fluidThermoParcel>()
inline bool contiguous<basicThermoParcel>()
{
return true;
}

View File

@ -23,15 +23,15 @@ License
\*---------------------------------------------------------------------------*/
#include "fluidThermoParcel.H"
#include "basicThermoParcel.H"
#include "Cloud.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
defineTemplateTypeNameAndDebug(fluidThermoParcel, 0);
defineTemplateTypeNameAndDebug(Cloud<fluidThermoParcel>, 0);
defineTemplateTypeNameAndDebug(basicThermoParcel, 0);
defineTemplateTypeNameAndDebug(Cloud<basicThermoParcel>, 0);
}
// ************************************************************************* //

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -23,7 +23,7 @@ License
\*---------------------------------------------------------------------------*/
#include "fluidThermoCloud.H"
#include "basicThermoCloud.H"
#include "makeParcelCloudFunctionObjects.H"
@ -32,26 +32,28 @@ License
#include "makeParcelDispersionModels.H"
#include "makeParcelInjectionModels.H"
#include "makeParcelPatchInteractionModels.H"
#include "makeParcelStochasticCollisionModels.H"
#include "makeThermoParcelSurfaceFilmModels.H" // thermo variant
// Thermodynamic
#include "makeParcelHeatTransferModels.H"
#include "makeThermoParcelSurfaceFilmModels.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
makeParcelCloudFunctionObjects(fluidThermoCloud);
makeParcelCloudFunctionObjects(basicThermoCloud);
// Kinematic sub-models
makeThermoParcelForces(fluidThermoCloud);
makeParcelDispersionModels(fluidThermoCloud);
makeParcelInjectionModels(fluidThermoCloud);
makeParcelPatchInteractionModels(fluidThermoCloud);
makeThermoParcelForces(basicThermoCloud);
makeParcelDispersionModels(basicThermoCloud);
makeParcelInjectionModels(basicThermoCloud);
makeParcelPatchInteractionModels(basicThermoCloud);
makeParcelStochasticCollisionModels(basicThermoCloud);
makeParcelSurfaceFilmModels(basicThermoCloud);
// Thermo sub-models
makeParcelHeatTransferModels(fluidThermoCloud);
makeParcelSurfaceFilmModels(fluidThermoCloud);
makeParcelHeatTransferModels(basicThermoCloud);
}