mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-08-17 03:47:04 +00:00
40 lines
743 B
C++
40 lines
743 B
C++
#ifndef __boundaryGrainInteractionList_hpp__
|
|
#define __boundaryGrainInteractionList_hpp__
|
|
|
|
|
|
#include "boundaryList.hpp"
|
|
#include "boundaryListPtr.hpp"
|
|
#include "boundaryGrainInteraction.hpp"
|
|
|
|
|
|
namespace pFlow
|
|
{
|
|
|
|
|
|
template<typename contactForceModel,typename geometryMotionModel>
|
|
class boundaryGrainInteractionList
|
|
:
|
|
public boundaryListPtr<boundaryGrainInteraction<contactForceModel,geometryMotionModel>>
|
|
{
|
|
private:
|
|
|
|
const boundaryList& boundaries_;
|
|
|
|
public:
|
|
|
|
boundaryGrainInteractionList(
|
|
const grainParticles& grnPrtcls,
|
|
const geometryMotionModel& geomMotion
|
|
);
|
|
|
|
~boundaryGrainInteractionList()=default;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
#include "boundaryGrainInteractionList.cpp"
|
|
|
|
#endif //__boundaryGrainInteractionList_hpp__
|