1
0
mirror of https://github.com/PhasicFlow/phasicFlow.git synced 2025-07-28 03:27:05 +00:00

updated V1.0 RotaryAirLock

This commit is contained in:
ramin1728
2024-12-28 13:09:06 +03:30
parent 6179f6ea3b
commit 278afc8ab6
8 changed files with 216 additions and 160 deletions
tutorials/sphereGranFlow/RotaryAirLockValve

@ -6,78 +6,56 @@ objectName interaction;
objectType dicrionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
materials (sphereMat wallMat); // a list of materials names
// a list of materials names
materials (sphereMat wallMat);
// density of materials [kg/m3]
densities (1000 2500);
densities (1000 2500); // density of materials [kg/m3]
contactListType sortedContactList;
contactSearch
{
method NBS; // method for broad search
updateInterval 10;
sizeRatio 1.1;
cellExtent 0.55;
adjustableBox Yes;
}
model
{
contactForceModel nonLinearNonLimited;
rollingFrictionModel normal;
rollingFrictionModel normal;
/*
Property (sphereMat-sphereMat sphereMat-wallMat
wallMat-wallMat);
Property (sphereMat-sphereMat sphereMat-wallMat
wallMat-wallMat);
*/
// Young modulus [Pa]
Yeff (1.0e6 1.0e6
Yeff (1.0e6 1.0e6 // Young modulus [Pa]
1.0e6);
// Shear modulus [Pa]
Geff (0.8e6 0.8e6
Geff (0.8e6 0.8e6 // Shear modulus [Pa]
0.8e6);
// Poisson's ratio [-]
nu (0.25 0.25
0.25);
nu (0.25 0.25 // Poisson's ratio [-]
0.25);
// coefficient of normal restitution
en (0.7 0.8
1.0);
en (0.7 0.8 // coefficient of normal restitution
1.0);
// coefficient of tangential restitution
et (1.0 1.0
1.0);
et (1.0 1.0 // coefficient of tangential restitution
1.0);
// dynamic friction
mu (0.3 0.35
0.35);
mu (0.3 0.35 // dynamic friction
0.35);
// rolling friction
mur (0.1 0.1
0.1);
mur (0.1 0.1 // rolling friction
0.1);
}
contactSearch
{
// method for broad search particle-particle
method NBS;
// method for broad search particle-wall
wallMapping cellMapping;
NBSInfo
{
// each 10 timesteps, update neighbor list
updateFrequency 10;
// bounding box size to particle diameter (max)
sizeRatio 1.1;
}
cellMappingInfo
{
// each 20 timesteps, update neighbor list
updateFrequency 10;
// bounding box for particle-wall search (> 0.5)
cellExtent 0.6;
}
}