2024-04-04 12:31:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
template <typename CFModel, typename gMModel>
|
|
|
|
pFlow::boundarySphereInteractionList<CFModel, gMModel>::boundarySphereInteractionList
|
|
|
|
(
|
|
|
|
const sphereParticles &sphPrtcls,
|
|
|
|
const gMModel &geomMotion
|
|
|
|
)
|
|
|
|
:
|
|
|
|
ListPtr<boundarySphereInteraction<CFModel,gMModel>>(6),
|
|
|
|
boundaries_(sphPrtcls.pStruct().boundaries())
|
|
|
|
{
|
2024-05-05 23:05:23 +03:30
|
|
|
//gSettings::sleepMiliSeconds(1000*pFlowProcessors().localRank());
|
2024-04-04 12:31:19 -07:00
|
|
|
for(uint32 i=0; i<6; i++)
|
|
|
|
{
|
|
|
|
this->set(
|
|
|
|
i,
|
|
|
|
boundarySphereInteraction<CFModel, gMModel>::create(
|
|
|
|
boundaries_[i],
|
|
|
|
sphPrtcls,
|
|
|
|
geomMotion));
|
|
|
|
}
|
|
|
|
}
|