phasicFlow/tutorials/sphereGranFlow/layeredSiloFilling/caseSetup/interaction

72 lines
2.1 KiB
Plaintext
Raw Normal View History

2022-09-28 08:38:09 +00:00
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName interaction;
objectType dicrionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2024-12-03 12:19:59 +00:00
materials (lightMat heavyMat wallMat); // a list of materials names
2022-09-28 08:38:09 +00:00
2024-12-03 12:19:59 +00:00
densities (1000 1500.0 2500); // density of materials [kg/m3]
2022-09-28 08:38:09 +00:00
2024-12-03 12:19:59 +00:00
contactListType sortedContactList;
2022-09-28 08:38:09 +00:00
contactSearch
{
method NBS; // method for broad search particle-particle
2025-02-14 19:37:13 +00:00
updateInterval 10;
sizeRatio 1.1;
2025-02-14 19:37:13 +00:00
cellExtent 0.55;
adjustableBox Yes;
}
2022-09-28 08:38:09 +00:00
model
{
contactForceModel nonLinearLimited;
2024-12-03 12:19:59 +00:00
rollingFrictionModel normal;
2022-09-28 08:38:09 +00:00
/*
2024-12-03 12:19:59 +00:00
2022-09-28 08:38:09 +00:00
Property (lightMat-lightMat lightMat-heavyMat lightMat-wallMat
heavyMat-heavyMat heavyMat-wallMat
2024-12-03 12:19:59 +00:00
wallMat-wallMat );
2022-09-28 08:38:09 +00:00
*/
2024-12-03 12:19:59 +00:00
Yeff (1.0e6 1.0e6 1.0e6 // Young modulus [Pa]
2022-09-28 08:38:09 +00:00
1.0e6 1.0e6
1.0e6);
2024-12-03 12:19:59 +00:00
Geff (0.8e6 0.8e6 0.8e6 // Shear modulus [Pa]
2022-09-28 08:38:09 +00:00
0.8e6 0.8e6
0.8e6);
2025-02-14 19:37:13 +00:00
nu (0.25 0.25 0.25 // Poisson's ratio [-]
0.25 0.25
0.25);
2022-09-28 08:38:09 +00:00
2025-02-14 19:37:13 +00:00
en (0.97 0.97 0.85 // coefficient of normal restitution
0.97 0.85
1.00);
2022-09-28 08:38:09 +00:00
2025-02-14 19:37:13 +00:00
et (1.0 1.0 1.0 // coefficient of tangential restitution
1.0 1.0
1.0);
2022-09-28 08:38:09 +00:00
2025-02-14 19:37:13 +00:00
mu (0.65 0.65 0.35 // dynamic friction
0.65 0.35
0.35);
2022-09-28 08:38:09 +00:00
2025-02-14 19:37:13 +00:00
mur (0.1 0.1 0.1 // rolling friction
0.1 0.1
0.1);
2022-09-28 08:38:09 +00:00
}
2024-05-28 08:54:34 +00:00