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

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

parent 46174552
No related merge requests found
......@@ -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_
(
......
......@@ -83,7 +83,11 @@ public:
// Constructors
//- Construct given mesh
solidParticleCloud(const fvMesh&);
solidParticleCloud
(
const fvMesh&,
const word& cloudName = "defaultCloud"
);
// Member Functions
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment