mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Changed the constructor to ignore the type of the positions file.
This commit is contained in:
@ -40,9 +40,13 @@ namespace Foam
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * 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),
|
mesh_(mesh),
|
||||||
particleProperties_
|
particleProperties_
|
||||||
(
|
(
|
||||||
|
|||||||
@ -83,7 +83,11 @@ public:
|
|||||||
// Constructors
|
// Constructors
|
||||||
|
|
||||||
//- Construct given mesh
|
//- Construct given mesh
|
||||||
solidParticleCloud(const fvMesh&);
|
solidParticleCloud
|
||||||
|
(
|
||||||
|
const fvMesh&,
|
||||||
|
const word& cloudName = "defaultCloud"
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
// Member Functions
|
// Member Functions
|
||||||
|
|||||||
Reference in New Issue
Block a user