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

View File

@ -78,7 +78,7 @@ pFlow::particles::particles(systemControl& control)
{
this->addToSubscriber(dynPointStruct_);
idHandler_().initialIdCheck();
//idHandler_().initialIdCheck();
}
bool
@ -87,7 +87,16 @@ pFlow::particles::beforeIteration()
zeroForce();
zeroTorque();
return dynPointStruct_.beforeIteration();
if( !dynPointStruct_.beforeIteration())
{
return false;
}
shapeIndex_.updateBoundariesSlaveToMasterIfRequested();
accelertion_.updateBoundariesSlaveToMasterIfRequested();
idHandler_().updateBoundariesSlaveToMasterIfRequested();
return true;
}
bool