www.cemf.ir
periodicBoundarySphereInteraction.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 sphereParticles &sphPrtcls,
27  const GeometryMotionModel &geomMotion)
28  : boundarySphereInteraction<cFM,gMM>(boundary, sphPrtcls, 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->sphParticles().diameter().deviceViewAll(),
62  this->sphParticles().propertyId().deviceViewAll(),
63  this->sphParticles().velocity().deviceViewAll(),
64  this->sphParticles().rVelocity().deviceViewAll(),
65  this->sphParticles().contactForce().deviceViewAll(),
66  this->sphParticles().contactTorque().deviceViewAll());
67 
68  return false;
69 }
pFlow::periodicBoundarySphereInteraction::sphereSphereInteraction
bool sphereSphereInteraction(real dt, const ContactForceModel &cfModel, uint32 step) override
Definition: periodicBoundarySphereInteraction.cpp:46
pFlow::real
float real
Definition: builtinTypes.hpp:45
pFlow::boundarySphereInteraction::ContactForceModel
contactForceModel ContactForceModel
Definition: boundarySphereInteraction.hpp:43
pFlow::periodicBoundarySphereInteraction::masterInteraction_
bool masterInteraction_
Definition: periodicBoundarySphereInteraction.hpp:60
pFlow::boundarySphereInteraction::allocatePWPairs
void allocatePWPairs()
Definition: boundarySphereInteraction.cpp:30
pFlow::periodicBoundarySphereInteraction::periodicBoundarySphereInteraction
periodicBoundarySphereInteraction(const boundaryBase &boundary, const sphereParticles &sphPrtcls, const GeometryMotionModel &geomMotion)
Definition: periodicBoundarySphereInteraction.cpp:24
pFlow::boundarySphereInteraction
Definition: boundarySphereInteraction.hpp:32
pFlow::uint32
unsigned int uint32
Definition: builtinTypes.hpp:56
periodicBoundarySIKernels.hpp
pFlow::boundarySphereInteraction::allocatePPPairs
void allocatePPPairs()
Definition: boundarySphereInteraction.cpp:23
pFlow::periodicBoundarySIKernels::sphereSphereInteraction
void sphereSphereInteraction(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< uint32 > &propId, const deviceViewType1D< realx3 > &vel, const deviceViewType1D< realx3 > &rVel, const deviceViewType1D< realx3 > &cForce, const deviceViewType1D< realx3 > &cTorque)
Definition: periodicBoundarySIKernels.hpp:8
pFlow::sphereParticles
Class for managing spherical particles.
Definition: sphereParticles.hpp:42
pFlow::boundarySphereInteraction::GeometryMotionModel
geometryMotionModel GeometryMotionModel
Definition: boundarySphereInteraction.hpp:41
pFlow::boundaryBase
Definition: boundaryBase.hpp:42
pFlow::generalBoundary::boundary
const auto & boundary() const
Definition: generalBoundary.hpp:108
sphParticles
pFlow::sphereParticles sphParticles(Control, proprties)