Changed the constructor to ignore the type of the positions file.

This commit is contained in:
henry
2008-08-14 12:30:52 +01:00
parent 461745524f
commit e8e2417570
2 changed files with 11 additions and 3 deletions

View File

@ -40,9 +40,13 @@ namespace Foam
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::solidParticleCloud::solidParticleCloud(const fvMesh& mesh)
Foam::solidParticleCloud::solidParticleCloud
(
const fvMesh& mesh,
const word& cloudName
)
:
Cloud<solidParticle>(mesh),
Cloud<solidParticle>(mesh, cloudName, false),
mesh_(mesh),
particleProperties_
(

View File

@ -83,7 +83,11 @@ public:
// Constructors
//- Construct given mesh
solidParticleCloud(const fvMesh&);
solidParticleCloud
(
const fvMesh&,
const word& cloudName = "defaultCloud"
);
// Member Functions