STYLE: Correcting typos

This commit is contained in:
Andrew Heather
2018-03-28 17:14:16 +01:00
parent 3a569c9fd5
commit a230e8d408
486 changed files with 740 additions and 758 deletions

View File

@ -96,7 +96,7 @@ class FSD
//- Fuel mass concentration on the fuel stream
dimensionedScalar YFuelFuelStream_;
//- Oxygen mass concentration on the oxydizer stream
//- Oxygen mass concentration on the oxidizer stream
dimensionedScalar YO2OxiStream_;
//- Similarity constant for the sub-grid ft fluctuations
@ -114,7 +114,7 @@ class FSD
//- Dimension of the ft space. Used to integrate the beta-pdf
scalar ftDim_;
//- Minimum mixture freaction variance to calculate pdf
//- Minimum mixture fraction variance to calculate pdf
scalar ftVarMin_;

View File

@ -65,7 +65,7 @@ protected:
//- Mesh reference
const fvMesh& mesh_;
//- Combstion model owner
//- Combustion model owner
const combustionModel& combModel_;
//- Fuel name

View File

@ -121,22 +121,22 @@ class diffusionMulticomponent
//- Stoichiometric oxygen-fuel mass ratio
scalarList s_;
//- Oxydaser sream mass concentrations
//- Oxidizer stream mass concentrations
scalarList YoxStream_;
//- Fuel stream mass concentrations
scalarList YfStream_;
//- Mean distribution for gaussian probabililty
//- Mean distribution for gaussian probability
scalarList sigma_;
//- Residual oxydaser
//- Residual oxidizer
scalarList oxidantRes_;
//- ft stochiometric correction
//- ft stoichiometric correction
scalarList ftCorr_;
//- Relaxatnio factor on total source
//- Relaxation factor on total source
scalar alpha_;
//- Switch on to laminar combustion for ignition

View File

@ -52,7 +52,7 @@ eddyDissipationDiffusionModel
{}
// * * * * * * * * * * * * * * * * Destructors * * * * * * * * * * * * * * * //
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
template<class CombThermoType, class ThermoType>
eddyDissipationDiffusionModel<CombThermoType, ThermoType>::

View File

@ -62,11 +62,11 @@ class eddyDissipationDiffusionModel
{
// Private data
//- Diffussivity constant
//- Diffusivity constant
scalar Cd_;
// Private memeber functions
// Private member functions
//- Disallow copy construct
eddyDissipationDiffusionModel(const eddyDissipationDiffusionModel&);

View File

@ -52,7 +52,7 @@ eddyDissipationModelBase<CombThermoType, ThermoType>::eddyDissipationModelBase
{}
// * * * * * * * * * * * * * * * * Destructors * * * * * * * * * * * * * * * //
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
template<class CombThermoType, class ThermoType>
eddyDissipationModelBase<CombThermoType, ThermoType>::