Skip to content
Snippets Groups Projects
Commit d9b9d7f2 authored by henry's avatar henry
Browse files

Corrections to Niklas' contribution for 1.5 to dev.

parent 5bda264b
Branches
Tags
No related merge requests found
...@@ -52,7 +52,6 @@ defineTemplateTypeNameAndDebug(IOPtrList<injector>, 0); ...@@ -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 ...@@ -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 ...@@ -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 ...@@ -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 ...@@ -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: ...@@ -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,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment