normalRolling.hpp
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 
21 #ifndef __normalRolling_hpp__
22 #define __normalRolling_hpp__
23 
24 
25 namespace pFlow::cfModels
26 {
27 
28 template<typename contactForceModel>
30 :
31  public contactForceModel
32 {
33 public:
34 
35  using contactForceStorage =
36  typename contactForceModel::contactForceStorage;
37 
38 
40 
41  bool readNormalDict(const dictionary& dict)
42  {
43  auto mur = dict.getVal<realVector>("mur");
44 
45  uint32 nMat;
46 
47  if(!realSymArray_D::getN(mur.size(),nMat) || nMat != this->numMaterial())
48  {
50  "wrong number of values supplied in mur. \n";
51  return false;
52  }
53 
54  mur_.assign(mur);
55 
56  return true;
57  }
58 
59 public:
60 
61  TypeInfoNV(word("normal<"+contactForceModel::TYPENAME()+">"));
62 
63 
64  normalRolling(int32 nMaterial, const ViewType1D<real>& rho, const dictionary& dict)
65  :
66  contactForceModel(nMaterial, rho, dict),
67  mur_("mur", nMaterial)
68  {
69  if(!readNormalDict(dict))
70  {
71  fatalExit;
72  }
73  }
74 
76  void rollingFriction
77  (
78  const real dt,
79  const int32 i,
80  const int32 j,
81  const int32 propId_i,
82  const int32 propId_j,
83  const real Ri,
84  const real Rj,
85  const realx3& wi,
86  const realx3& wj,
87  const realx3& Nij,
88  const realx3& FCn,
89  realx3& Mri,
90  realx3& Mrj
91  )const
92  {
93 
94  realx3 w_hat = wi-wj;
95  real w_hat_mag = length(w_hat);
96 
97  if( !equal(w_hat_mag,0.0) )
98  w_hat /= w_hat_mag;
99  else
100  w_hat = 0.0;
101 
102  auto Reff = (Ri*Rj)/(Ri+Rj);
103 
104  Mri = ( -mur_(propId_i,propId_j) *length(FCn) * Reff ) * w_hat ;
105 
106  //removing the normal part
107  // Mri = Mri - ( (Mri .dot. nij)*nij )
108 
109  Mrj = -Mri;
110  }
111 
112 
113 };
114 
115 }
116 
117 #endif
pFlow::real
float real
Definition: builtinTypes.hpp:46
fatalExit
#define fatalExit
Definition: error.hpp:57
pFlow::uint32
unsigned int uint32
Definition: builtinTypes.hpp:59
pFlow::word
std::string word
Definition: builtinTypes.hpp:63
pFlow::symArray< real >::getN
static bool getN(uint32 nElem, uint32 &n)
Definition: symArrayHD.hpp:240
pFlow::symArray::assign
bool assign(const Vector< T > src)
Definition: symArrayHD.hpp:177
pFlow::cfModels::normalRolling::TypeInfoNV
TypeInfoNV(word("normal<"+contactForceModel::TYPENAME()+">"))
pFlow::cfModels::normalRolling::contactForceStorage
typename contactForceModel::contactForceStorage contactForceStorage
Definition: normalRolling.hpp:36
fatalErrorInFunction
#define fatalErrorInFunction
Definition: error.hpp:42
length
INLINE_FUNCTION_HD T length(const triple< T > &v1)
pFlow::int32
int int32
Definition: builtinTypes.hpp:53
pFlow::cfModels::normalRolling::rollingFriction
INLINE_FUNCTION_HD void rollingFriction(const real dt, const int32 i, const int32 j, const int32 propId_i, const int32 propId_j, const real Ri, const real Rj, const realx3 &wi, const realx3 &wj, const realx3 &Nij, const realx3 &FCn, realx3 &Mri, realx3 &Mrj) const
Definition: normalRolling.hpp:77
pFlow::dictionary::getVal
T getVal(const word &keyword) const
Definition: dictionary.hpp:309
pFlow::cfModels::normalRolling::mur_
realSymArray_D mur_
Definition: normalRolling.hpp:39
pFlow::cfModels::normalRolling::readNormalDict
bool readNormalDict(const dictionary &dict)
Definition: normalRolling.hpp:41
pFlow::ViewType1D
Kokkos::View< T *, properties... > ViewType1D
Definition: KokkosTypes.hpp:62
pFlow::cfModels
Definition: linearCF.hpp:27
INLINE_FUNCTION_HD
#define INLINE_FUNCTION_HD
Definition: pFlowMacros.hpp:51
pFlow::triple< real >
pFlow::Vector< real >
pFlow::symArray< real >
pFlow::equal
INLINE_FUNCTION_HD bool equal(const real &s1, const real &s2)
Definition: bTypesFunctions.hpp:188
pFlow::cfModels::normalRolling::normalRolling
normalRolling(int32 nMaterial, const ViewType1D< real > &rho, const dictionary &dict)
Definition: normalRolling.hpp:64
pFlow::cfModels::normalRolling
Definition: normalRolling.hpp:29
pFlow::dictionary
Definition: dictionary.hpp:38