mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-08 03:07:03 +00:00
23 lines
552 B
C++
23 lines
552 B
C++
|
|
|
|
template <typename CFModel, typename gMModel>
|
|
pFlow::boundaryGrainInteractionList<CFModel, gMModel>::boundaryGrainInteractionList
|
|
(
|
|
const grainParticles &grnPrtcls,
|
|
const gMModel &geomMotion
|
|
)
|
|
:
|
|
boundaryListPtr<boundaryGrainInteraction<CFModel,gMModel>>(),
|
|
boundaries_(grnPrtcls.pStruct().boundaries())
|
|
{
|
|
//gSettings::sleepMiliSeconds(1000*pFlowProcessors().localRank());
|
|
ForAllBoundariesPtr(i, this)
|
|
{
|
|
this->set(
|
|
i,
|
|
boundaryGrainInteraction<CFModel, gMModel>::create(
|
|
boundaries_[i],
|
|
grnPrtcls,
|
|
geomMotion));
|
|
}
|
|
} |