www.cemf.ir
periodicBoundaryGrainInteraction.cpp
Go to the documentation of this file.
1 /*------------------------------- phasicFlow ---------------------------------
2  O C enter of
3  O O E ngineering and
4  O O M ultiscale modeling of
5  OOOOOOO F luid flow
6 ------------------------------------------------------------------------------
7  Copyright (C): www.cemf.ir
8  email: hamid.r.norouzi AT gmail.com
9 ------------------------------------------------------------------------------
10 Licence:
11  This file is part of phasicFlow code. It is a free software for simulating
12  granular and multiphase flows. You can redistribute it and/or modify it under
13  the terms of GNU General Public License v3 or any other later versions.
14 
15  phasicFlow is distributed to help others in their research in the field of
16  granular and multiphase flows, but WITHOUT ANY WARRANTY; without even the
17  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 
19 -----------------------------------------------------------------------------*/
20 
22 
23 template <typename cFM, typename gMM>
25  const boundaryBase &boundary,
26  const grainParticles &grnPrtcls,
27  const GeometryMotionModel &geomMotion)
28  : boundaryGrainInteraction<cFM,gMM>(boundary, grnPrtcls, geomMotion),
29  transferVec_(boundary.mirrorBoundary().displacementVectroToMirror())
30 {
31  if(boundary.thisBoundaryIndex()%2==1)
32  {
33  masterInteraction_ = true;
34  this->allocatePPPairs();
35  this->allocatePWPairs();
36 
37  }
38  else
39  {
40  masterInteraction_ = false;
41  }
42 }
43 
44 template <typename cFM, typename gMM>
46 (
47  real dt,
48  const ContactForceModel &cfModel,
49  uint32 step
50 )
51 {
52  if(!masterInteraction_) return false;
53 
55  dt,
56  this->ppPairs(),
57  cfModel,
58  transferVec_,
59  this->boundary().thisPoints(),
60  this->mirrorBoundary().thisPoints(),
61  this->grnParticles().diameter().deviceViewAll(),
62  this->grnParticles().coarseGrainFactor().deviceViewAll(),
63  this->grnParticles().propertyId().deviceViewAll(),
64  this->grnParticles().velocity().deviceViewAll(),
65  this->grnParticles().rVelocity().deviceViewAll(),
66  this->grnParticles().contactForce().deviceViewAll(),
67  this->grnParticles().contactTorque().deviceViewAll());
68 
69  return false;
70 }
pFlow::real
float real
Definition: builtinTypes.hpp:45
pFlow::boundaryGrainInteraction
Definition: boundaryGrainInteraction.hpp:32
grnParticles
pFlow::grainParticles grnParticles(Control, proprties)
pFlow::grainParticles
Definition: grainParticles.hpp:42
pFlow::boundaryGrainInteraction::ContactForceModel
contactForceModel ContactForceModel
Definition: boundaryGrainInteraction.hpp:43
pFlow::uint32
unsigned int uint32
Definition: builtinTypes.hpp:56
pFlow::periodicBoundaryGrainInteraction::grainGrainInteraction
bool grainGrainInteraction(real dt, const ContactForceModel &cfModel, uint32 step) override
Definition: periodicBoundaryGrainInteraction.cpp:46
pFlow::periodicBoundarySIKernels::grainGrainInteraction
void grainGrainInteraction(real dt, const ContactListType &cntctList, const ContactForceModel &forceModel, const realx3 &transferVec, const deviceScatteredFieldAccess< realx3 > &thisPoints, const deviceScatteredFieldAccess< realx3 > &mirrorPoints, const deviceViewType1D< real > &diam, const deviceViewType1D< real > &coarseGrainFactor, const deviceViewType1D< uint32 > &propId, const deviceViewType1D< realx3 > &vel, const deviceViewType1D< realx3 > &rVel, const deviceViewType1D< realx3 > &cForce, const deviceViewType1D< realx3 > &cTorque)
Definition: periodicBoundarySIKernels.hpp:8
pFlow::boundaryGrainInteraction::allocatePWPairs
void allocatePWPairs()
Definition: boundaryGrainInteraction.cpp:30
pFlow::periodicBoundaryGrainInteraction::periodicBoundaryGrainInteraction
periodicBoundaryGrainInteraction(const boundaryBase &boundary, const grainParticles &grnPrtcls, const GeometryMotionModel &geomMotion)
Definition: periodicBoundaryGrainInteraction.cpp:24
pFlow::boundaryBase
Definition: boundaryBase.hpp:42
pFlow::generalBoundary::boundary
const auto & boundary() const
Definition: generalBoundary.hpp:108
pFlow::boundaryGrainInteraction::GeometryMotionModel
geometryMotionModel GeometryMotionModel
Definition: boundaryGrainInteraction.hpp:41
pFlow::boundaryGrainInteraction::allocatePPPairs
void allocatePPPairs()
Definition: boundaryGrainInteraction.cpp:23
periodicBoundarySIKernels.hpp
pFlow::periodicBoundaryGrainInteraction::masterInteraction_
bool masterInteraction_
Definition: periodicBoundaryGrainInteraction.hpp:60