mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-12 16:26:23 +00:00
bug fix for cudaRun in indexContainer
This commit is contained in:
@ -75,9 +75,11 @@ pFlow::sphereDEMSystem::sphereDEMSystem(
|
||||
REPORT(0)<< "\nCreating surface geometry for sphereDEMSystem . . . "<<endREPORT;
|
||||
geometry_ = geometry::create(Control(), Property());
|
||||
|
||||
|
||||
REPORT(0)<<"\nReading sphere particles . . ."<<endREPORT;
|
||||
particles_ = makeUnique<sphereFluidParticles>(Control(), Property());
|
||||
|
||||
|
||||
insertion_ = makeUnique<sphereInsertion>(
|
||||
Control().caseSetup().path()+insertionFile__,
|
||||
particles_(),
|
||||
|
@ -56,8 +56,9 @@ pFlow::sphereFluidParticles::sphereFluidParticles(
|
||||
|
||||
bool pFlow::sphereFluidParticles::beforeIteration()
|
||||
{
|
||||
return sphereParticles::beforeIteration();
|
||||
|
||||
sphereParticles::beforeIteration();
|
||||
zeroFluidForce_H();
|
||||
zeroFluidTorque_H();
|
||||
return true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user