Patch for some misc. typos and inconsistencies
Resolves patch request https://bugs.openfoam.org/view.php?id=3325 Patch contributed by Timo Niemi, VTT.
This commit is contained in:
@ -25,7 +25,7 @@ Class
|
||||
Foam::diameterModel
|
||||
|
||||
Description
|
||||
A2stract base-class for dispersed-phase particle diameter models.
|
||||
Abstract base-class for dispersed-phase particle diameter models.
|
||||
|
||||
SourceFiles
|
||||
diameterModel.C
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -25,7 +25,7 @@ Class
|
||||
Foam::diameterModel
|
||||
|
||||
Description
|
||||
A2stract base-class for dispersed-phase particle diameter models.
|
||||
Abstract base-class for dispersed-phase particle diameter models.
|
||||
|
||||
SourceFiles
|
||||
diameterModel.C
|
||||
|
||||
@ -208,14 +208,14 @@ public:
|
||||
return thermo_->alpha(patchi);
|
||||
}
|
||||
|
||||
//- Thermal diffusivity for temperature of mixture [W/m/K]
|
||||
//- Thermal diffusivity for temperature of mixture
|
||||
// for patch [W/m/K]
|
||||
tmp<scalarField> kappa(const label patchi) const
|
||||
{
|
||||
return thermo_->kappa(patchi);
|
||||
}
|
||||
|
||||
//- Thermal diffusivity for temperature of mixture
|
||||
// for patch [W/m/K]
|
||||
//- Thermal diffusivity for temperature of mixture [W/m/K]
|
||||
tmp<volScalarField> kappa() const
|
||||
{
|
||||
return thermo_->kappa();
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -39,11 +39,6 @@ Description
|
||||
- Mass-based Rosin-Rammler
|
||||
- uniform
|
||||
|
||||
The distributionModel is tabulated in equidistant nPoints, in an interval.
|
||||
These values are integrated to obtain the cumulated distribution model,
|
||||
which is then used to change the distribution from unifrom to
|
||||
the actual distributionModel.
|
||||
|
||||
SourceFiles
|
||||
distributionModel.C
|
||||
distributionModelNew.C
|
||||
@ -146,7 +141,7 @@ public:
|
||||
//- Return the maximum value
|
||||
virtual scalar maxValue() const = 0;
|
||||
|
||||
//- Return the maximum value
|
||||
//- Return the mean value
|
||||
virtual scalar meanValue() const = 0;
|
||||
};
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Copyright (C) 2011-2018 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2019 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -80,8 +80,6 @@ void Foam::ReactingParcel<ParcelType>::calcPhaseChange
|
||||
const scalar Tdash = min(T, TMax);
|
||||
const scalar Tsdash = min(Ts, TMax);
|
||||
|
||||
scalarField hmm(dMassPC);
|
||||
|
||||
// Calculate mass transfer due to phase change
|
||||
phaseChange.calculate
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user