updated V1.0 toteblender

This commit is contained in:
ramin1728
2024-12-28 14:09:09 +03:30
parent 0d5f8a98a2
commit 31ebc5963c
7 changed files with 272 additions and 291 deletions

View File

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