Bug fix for observed in particles, getNth and naming for contact lists

This commit is contained in:
Hamidreza
2025-03-14 18:33:02 +03:30
parent b65be8881c
commit 892f5395bc
9 changed files with 47 additions and 20 deletions

View File

@ -41,9 +41,9 @@ bool pFlow::sphereInteraction<cFM,gMM, cLT>::createSphereInteraction()
geometryMotion_,
timers());
ppContactList_ = makeUnique<ContactListType>(nPrtcl+1);
ppContactList_ = makeUnique<ContactListType>("sphere-sphere",nPrtcl+1);
pwContactList_ = makeUnique<ContactListType>(nPrtcl/5+1);
pwContactList_ = makeUnique<ContactListType>("sphere-wall",nPrtcl/5+1);
return true;
}