2022-09-05 12:28:23 +00:00
|
|
|
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
|
|
| phasicFlow File |
|
|
|
|
| copyright: www.cemf.ir |
|
|
|
|
\* ------------------------------------------------------------------------- */
|
|
|
|
objectName interaction;
|
|
|
|
objectType dicrionary;
|
2023-04-12 06:09:49 +00:00
|
|
|
fileFormat ASCII;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2022-09-05 12:28:23 +00:00
|
|
|
|
2022-09-05 18:51:19 +00:00
|
|
|
materials (prop1); // a list of materials names
|
2022-09-05 12:28:23 +00:00
|
|
|
densities (1000.0); // density of materials [kg/m3]
|
|
|
|
|
|
|
|
contactListType sortedContactList;
|
|
|
|
|
|
|
|
model
|
|
|
|
{
|
|
|
|
contactForceModel nonLinearNonLimited;
|
|
|
|
rollingFrictionModel normal;
|
|
|
|
|
|
|
|
Yeff (1.0e6); // Young modulus [Pa]
|
|
|
|
|
|
|
|
Geff (0.8e6); // Shear modulus [Pa]
|
|
|
|
|
|
|
|
nu (0.25); // Poisson's ratio [-]
|
|
|
|
|
|
|
|
en (0.7); // coefficient of normal restitution
|
|
|
|
|
|
|
|
et (1.0); // coefficient of tangential restitution
|
|
|
|
|
|
|
|
mu (0.3); // dynamic friction
|
|
|
|
|
|
|
|
mur (0.1); // rolling friction
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
contactSearch
|
|
|
|
{
|
|
|
|
method NBS; // method for broad search particle-particle
|
2022-10-30 14:51:02 +00:00
|
|
|
wallMapping cellMapping; // method for broad search particle-wall
|
2022-09-05 12:28:23 +00:00
|
|
|
|
|
|
|
NBSInfo
|
|
|
|
{
|
|
|
|
updateFrequency 20; // each 20 timesteps, update neighbor list
|
|
|
|
sizeRatio 1.1; // bounding box size to particle diameter (max)
|
|
|
|
}
|
|
|
|
|
2022-10-30 14:51:02 +00:00
|
|
|
cellMappingInfo
|
2022-09-05 12:28:23 +00:00
|
|
|
{
|
|
|
|
updateFrequency 20; // each 20 timesteps, update neighbor list
|
2022-09-05 18:51:19 +00:00
|
|
|
cellExtent 0.7; // bounding box for particle-wall search (> 0.5)
|
2022-09-05 12:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|