1
0
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:
Hamidreza Norouzi
2024-04-27 09:03:19 -07:00
parent 5c65b92008
commit e7215159af
44 changed files with 646 additions and 477 deletions

@ -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_;
}
};