mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-28 03:27:05 +00:00
modification to the base code for MPI-developement up to processor boundaries
This commit is contained in:
src
Interaction
CMakeLists.txt
contactSearch
sphereInteraction
boundaries
boundarySphereInteraction
periodicBoundarySphereInteraction
sphereInteraction
Particles
CMakeLists.txt
SphereParticles
sphereParticles
particles
phasicFlow
CMakeLists.txt
containers
pointField
processors
repository
streams
structuredData
boundaries
domain
pointStructure
pointStructure
@ -9,6 +9,7 @@ pFlow::regularParticleIdHandler::regularParticleIdHandler
|
||||
:
|
||||
particleIdHandler(pStruct)
|
||||
{
|
||||
initialIdCheck();
|
||||
}
|
||||
|
||||
pFlow::Pair<pFlow::uint32, pFlow::uint32>
|
||||
|
@ -33,6 +33,7 @@ private:
|
||||
|
||||
uint32 maxId_ = -1;
|
||||
|
||||
bool initialIdCheck()override;
|
||||
public:
|
||||
|
||||
ClassInfo("particleIdHandler<regular>");
|
||||
@ -50,7 +51,10 @@ public:
|
||||
|
||||
Pair<uint32, uint32> getIdRange(uint32 nNewParticles)override;
|
||||
|
||||
bool initialIdCheck()override;
|
||||
uint32 maxId()const override
|
||||
{
|
||||
return maxId_;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user