2024-04-04 12:31:19 -07:00
|
|
|
|
|
|
|
|
|
|
|
template <typename CFModel, typename gMModel>
|
|
|
|
pFlow::boundarySphereInteractionList<CFModel, gMModel>::boundarySphereInteractionList
|
|
|
|
(
|
|
|
|
const sphereParticles &sphPrtcls,
|
|
|
|
const gMModel &geomMotion
|
|
|
|
)
|
|
|
|
:
|
2025-02-01 22:14:41 +03:30
|
|
|
boundaryListPtr<boundarySphereInteraction<CFModel,gMModel>>(),
|
2024-04-04 12:31:19 -07:00
|
|
|
boundaries_(sphPrtcls.pStruct().boundaries())
|
|
|
|
{
|
2025-02-01 22:14:41 +03:30
|
|
|
|
|
|
|
ForAllActiveBoundariesPtr(i, this)
|
2024-04-04 12:31:19 -07:00
|
|
|
{
|
|
|
|
this->set(
|
|
|
|
i,
|
|
|
|
boundarySphereInteraction<CFModel, gMModel>::create(
|
|
|
|
boundaries_[i],
|
|
|
|
sphPrtcls,
|
|
|
|
geomMotion));
|
|
|
|
}
|
|
|
|
}
|