mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Corrections to Niklas' contribution for 1.5 to dev.
This commit is contained in:
@ -52,7 +52,6 @@ defineTemplateTypeNameAndDebug(IOPtrList<injector>, 0);
|
|||||||
// Construct from components
|
// Construct from components
|
||||||
Foam::spray::spray
|
Foam::spray::spray
|
||||||
(
|
(
|
||||||
const volPointInterpolation& vpi,
|
|
||||||
const volVectorField& U,
|
const volVectorField& U,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& p,
|
const volScalarField& p,
|
||||||
@ -67,7 +66,6 @@ Foam::spray::spray
|
|||||||
runTime_(U.time()),
|
runTime_(U.time()),
|
||||||
time0_(runTime_.value()),
|
time0_(runTime_.value()),
|
||||||
mesh_(U.mesh()),
|
mesh_(U.mesh()),
|
||||||
volPointInterpolation_(vpi),
|
|
||||||
rndGen_(label(0)),
|
rndGen_(label(0)),
|
||||||
|
|
||||||
U_(U),
|
U_(U),
|
||||||
@ -263,7 +261,7 @@ Foam::spray::spray
|
|||||||
{
|
{
|
||||||
FatalErrorIn
|
FatalErrorIn
|
||||||
(
|
(
|
||||||
"spray::spray(const pointMesh& pMesh, const volVectorField& U, "
|
"spray::spray(const volVectorField& U, "
|
||||||
"const volScalarField& rho, const volScalarField& p, "
|
"const volScalarField& rho, const volScalarField& p, "
|
||||||
"const volScalarField& T, const combustionMixture& composition,"
|
"const volScalarField& T, const combustionMixture& composition,"
|
||||||
"const PtrList<specieProperties>& gaseousFuelProperties, "
|
"const PtrList<specieProperties>& gaseousFuelProperties, "
|
||||||
|
|||||||
@ -36,7 +36,6 @@ Description
|
|||||||
#include "parcel.H"
|
#include "parcel.H"
|
||||||
#include "injector.H"
|
#include "injector.H"
|
||||||
#include "IOPtrList.H"
|
#include "IOPtrList.H"
|
||||||
#include "volPointInterpolation.H"
|
|
||||||
#include "interpolation.H"
|
#include "interpolation.H"
|
||||||
#include "liquid.H"
|
#include "liquid.H"
|
||||||
#include "sprayThermoTypes.H"
|
#include "sprayThermoTypes.H"
|
||||||
@ -76,7 +75,6 @@ class spray
|
|||||||
const Time& runTime_;
|
const Time& runTime_;
|
||||||
scalar time0_;
|
scalar time0_;
|
||||||
const fvMesh& mesh_;
|
const fvMesh& mesh_;
|
||||||
const volPointInterpolation& volPointInterpolation_;
|
|
||||||
|
|
||||||
//- Random number generator
|
//- Random number generator
|
||||||
Random rndGen_;
|
Random rndGen_;
|
||||||
@ -189,7 +187,6 @@ public:
|
|||||||
//- Construct from components
|
//- Construct from components
|
||||||
spray
|
spray
|
||||||
(
|
(
|
||||||
const volPointInterpolation& vpi,
|
|
||||||
const volVectorField& U,
|
const volVectorField& U,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& p,
|
const volScalarField& p,
|
||||||
|
|||||||
Reference in New Issue
Block a user