mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
23 lines
524 B
C++
23 lines
524 B
C++
|
|
|
|
template <typename CFModel, typename gMModel>
|
|
pFlow::boundarySphereInteractionList<CFModel, gMModel>::boundarySphereInteractionList
|
|
(
|
|
const sphereParticles &sphPrtcls,
|
|
const gMModel &geomMotion
|
|
)
|
|
:
|
|
boundaryListPtr<boundarySphereInteraction<CFModel,gMModel>>(),
|
|
boundaries_(sphPrtcls.pStruct().boundaries())
|
|
{
|
|
output<<boundaries_.size()<<endl;
|
|
ForAllBoundariesPtr(i, this)
|
|
{
|
|
this->set(
|
|
i,
|
|
boundarySphereInteraction<CFModel, gMModel>::create(
|
|
boundaries_[i],
|
|
sphPrtcls,
|
|
geomMotion));
|
|
}
|
|
} |