mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
19 lines
407 B
C++
19 lines
407 B
C++
#include "boundarySphereParticlesList.hpp"
|
|
|
|
pFlow::boundarySphereParticlesList::boundarySphereParticlesList(
|
|
const boundaryList &bndrs,
|
|
sphereParticles &prtcls
|
|
)
|
|
:
|
|
ListPtr(bndrs.size()),
|
|
boundaries_(bndrs)
|
|
{
|
|
for(auto i=0; i<boundaries_.size(); i++)
|
|
{
|
|
this->set
|
|
(
|
|
i,
|
|
boundarySphereParticles::create(boundaries_[i], prtcls)
|
|
);
|
|
}
|
|
} |