mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-22 16:28:30 +00:00
20 lines
391 B
C++
20 lines
391 B
C++
#include "boundaryGrainParticlesList.hpp"
|
|
|
|
pFlow::boundaryGrainParticlesList::boundaryGrainParticlesList(
|
|
const boundaryList &bndrs,
|
|
grainParticles &prtcls
|
|
)
|
|
:
|
|
boundaryListPtr(),
|
|
boundaries_(bndrs)
|
|
{
|
|
ForAllBoundariesPtr(i, this)
|
|
{
|
|
this->set
|
|
(
|
|
i,
|
|
boundaryGrainParticles::create(boundaries_[i], prtcls)
|
|
);
|
|
}
|
|
|
|
} |