phasicFlow/tutorials/sphereGranFlow/toteblender/caseSetup/interaction

77 lines
1.7 KiB
Plaintext
Raw Normal View History

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