2024-09-21 13:37:03 +03:30
|
|
|
|
|
|
|
|
|
|
|
#ifndef __boundarySphereParticlesList_hpp__
|
|
|
|
#define __boundarySphereParticlesList_hpp__
|
|
|
|
|
2025-02-01 22:14:41 +03:30
|
|
|
#include "boundaryListPtr.hpp"
|
2024-09-21 13:37:03 +03:30
|
|
|
#include "boundaryList.hpp"
|
|
|
|
#include "boundarySphereParticles.hpp"
|
|
|
|
|
|
|
|
namespace pFlow
|
|
|
|
{
|
|
|
|
|
|
|
|
class boundarySphereParticlesList
|
|
|
|
:
|
2025-02-01 22:14:41 +03:30
|
|
|
public boundaryListPtr<boundarySphereParticles>
|
2024-09-21 13:37:03 +03:30
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
const boundaryList& boundaries_;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
boundarySphereParticlesList(
|
|
|
|
const boundaryList& bndrs,
|
|
|
|
sphereParticles& prtcls
|
|
|
|
);
|
|
|
|
|
|
|
|
~boundarySphereParticlesList()=default;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|