cosmetics

This commit is contained in:
andy
2009-05-22 15:20:30 +01:00
parent b66e42e11a
commit e17ef8cfaa
21 changed files with 28 additions and 35 deletions

View File

@ -433,7 +433,6 @@ void Foam::Particle<ParticleType>::transformProperties(const vector&)
{}
template<class ParticleType>
template<class TrackData>
void Foam::Particle<ParticleType>::hitPatch

View File

@ -98,10 +98,7 @@ public:
// Constructors
inline trackData
(
Cloud<ParticleType>& cloud
);
inline trackData(Cloud<ParticleType>& cloud);
// Member functions
@ -307,10 +304,10 @@ public:
// parallel transfer
class iNew
{
// Private data
const Cloud<ParticleType>& cloud_;
//- Reference to the cloud
const Cloud<ParticleType>& cloud_;
public:
@ -328,9 +325,8 @@ public:
//- Destructor
virtual ~Particle()
{}
virtual ~Particle()
{}
// Member Functions
@ -439,10 +435,7 @@ public:
// I-O
//- Write the fields associated with the owner cloud
static void writeFields
(
const Cloud<ParticleType>& c
);
static void writeFields(const Cloud<ParticleType>& c);
// Ostream Operator

View File

@ -27,6 +27,7 @@ Class
Description
Templated base class for reacting cloud
- Adds to thermodynamic cloud
- Variable composition (single phase)
- Phase change

View File

@ -27,6 +27,7 @@ Class
Description
Templated base class for multiphase reacting cloud
- Adds to reacting cloud
- multiphase composition
- devolatilisatsion

View File

@ -27,6 +27,7 @@ Class
Description
Templated base class for thermodynamic cloud
- Adds to kinematic cloud
- Heat transfer

View File

@ -64,4 +64,5 @@ void Foam::basicKinematicCloud::writeFields() const
basicKinematicParcel::writeFields(*this);
}
// ************************************************************************* //

View File

@ -26,7 +26,7 @@ Class
Foam::basicKinematicCloud
Description
Cloud class to introduce kinematic parcels
Kinematic cloud templated on the kinematic parcel
SourceFiles
basicKinematicCloud.C

View File

@ -26,7 +26,7 @@ Class
Foam::basicReactingMultiphaseCloud
Description
Reacting cloud templated on the reacting multiphase parcel
Reacting multiphase cloud templated on the reacting multiphase parcel
SourceFiles
basicReactingMultiphaseCloud.C

View File

@ -26,6 +26,7 @@ Class
Foam::basicThermoCloud
Description
Thermodynamic cloud templated on the thermodynamic parcel
SourceFiles
basicThermoCloud.C

View File

@ -502,7 +502,7 @@ public:
//- Read
static void readFields(KinematicCloud<ParcelType>& c);
//- write
//- Write
static void writeFields(const KinematicCloud<ParcelType>& c);

View File

@ -89,7 +89,7 @@ public:
//- Boiling point [K]
const scalar Tbp_;
//- Vapourisation temperature [K]
//- Vaporisation temperature [K]
const scalar Tvap_;
@ -109,7 +109,7 @@ public:
//- Return const access to the boiling point
inline scalar Tbp() const;
//- Return const access to the vapourisation temperature
//- Return const access to the vaporisation temperature
inline scalar Tvap() const;
};
@ -159,7 +159,7 @@ public:
//- Return const access to the constant properties
inline const constantProperties& constProps() const;
//- Return conat access to the interpolator for continuous
//- Return const access to the interpolator for continuous
// phase pressure field
inline const interpolation<scalar>& pInterp() const;
};

View File

@ -146,7 +146,7 @@ public:
//- Temperature field interpolator
const interpolation<scalar>& TInterp_;
//- Scpecific heat capacity field interpolator
//- Specific heat capacity field interpolator
const interpolation<scalar>& cpInterp_;
@ -176,11 +176,11 @@ public:
//- Return const access to the owner cloud
inline const constantProperties& constProps() const;
//- Return conat access to the interpolator for continuous
//- Return const access to the interpolator for continuous
// phase temperature field
inline const interpolation<scalar>& TInterp() const;
//- Return conat access to the interpolator for continuous
//- Return const access to the interpolator for continuous
// phase specific heat capacity field
inline const interpolation<scalar>& cpInterp() const;
};

View File

@ -163,10 +163,10 @@ public:
//- Return non-const access to a component mass fraction
scalar& Y(const label cmptI);
//- Return const acccess to the global ids
//- Return const access to the global ids
const labelList& globalIds() const;
//- Return const acccess to the map to the carrier global ids
//- Return const access to the map to the carrier global ids
const labelList& globalCarrierIds() const;
//- Return the global id of a component in the local list by name

View File

@ -54,7 +54,7 @@ class DispersionModel
//- Cloud dictionary
const dictionary& dict_;
// Reference to the owner cloud class
//- Reference to the owner cloud class
CloudType& owner_;

View File

@ -58,7 +58,7 @@ class DragModel
//- The cloud dictionary
const dictionary& dict_;
// reference to the owner cloud class
//- Reference to the owner cloud class
CloudType& owner_;

View File

@ -131,7 +131,7 @@ Foam::FieldActivatedInjection<CloudType>::FieldActivatedInjection
*sum(pow3(diameters_))
*mathematicalConstant::pi/6.0;
// Set/cahce the injector cells
// Set/cache the injector cells
forAll(positions_, i)
{
this->findCellAtPosition

View File

@ -87,7 +87,7 @@ class FieldActivatedInjection
//- Field of injector (x,y,z) positions
vectorIOField positions_;
//- Field of cell labels corresoponding to injector positions
//- Field of cell labels corresponding to injector positions
labelField injectorCells_;
//- Number of parcels per injector

View File

@ -24,8 +24,6 @@ License
\*---------------------------------------------------------------------------*/
#include "error.H"
#include "StandardWallInteraction.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //

View File

@ -72,7 +72,7 @@ protected:
//- Sherwood number as a function of Reynolds and Schmidt numbers
scalar Sh(const scalar Re, const scalar Sc) const;
//- Calculate the carrier phase comonent volume fractions at cellI
//- Calculate the carrier phase component volume fractions at cellI
scalarField calcXc(const label cellI) const;

View File

@ -60,7 +60,7 @@ class SurfaceReactionModel
//- The cloud dictionary
const dictionary& dict_;
// reference to the owner cloud class
//- Reference to the owner cloud class
CloudType& owner_;
//- The coefficients dictionary

View File

@ -24,8 +24,6 @@ License
\*---------------------------------------------------------------------------*/
#include "error.H"
#include "RanzMarshall.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //