2024-11-17 10:19:40 +03:30
|
|
|
|
|
|
|
|
|
|
|
#ifndef __boundaryGrainParticlesList_hpp__
|
|
|
|
#define __boundaryGrainParticlesList_hpp__
|
|
|
|
|
2025-02-01 22:14:41 +03:30
|
|
|
#include "boundaryListPtr.hpp"
|
2024-11-17 10:19:40 +03:30
|
|
|
#include "boundaryList.hpp"
|
|
|
|
#include "boundaryGrainParticles.hpp"
|
|
|
|
|
|
|
|
namespace pFlow
|
|
|
|
{
|
|
|
|
|
|
|
|
class boundaryGrainParticlesList
|
|
|
|
:
|
2025-02-01 22:14:41 +03:30
|
|
|
public boundaryListPtr<boundaryGrainParticles>
|
2024-11-17 10:19:40 +03:30
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
const boundaryList& boundaries_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
boundaryGrainParticlesList(
|
|
|
|
const boundaryList& bndrs,
|
|
|
|
grainParticles& prtcls
|
|
|
|
);
|
|
|
|
|
|
|
|
~boundaryGrainParticlesList()=default;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|