mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
23 lines
480 B
C++
23 lines
480 B
C++
![]() |
|
||
|
|
||
|
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())
|
||
|
{
|
||
|
|
||
|
for(uint32 i=0; i<6; i++)
|
||
|
{
|
||
|
this->set(
|
||
|
i,
|
||
|
boundarySphereInteraction<CFModel, gMModel>::create(
|
||
|
boundaries_[i],
|
||
|
sphPrtcls,
|
||
|
geomMotion));
|
||
|
}
|
||
|
}
|