mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
first commit after code loss - develop branch
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
#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)
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user