phasicFlow/tutorials/sphereGranFlow/V-blender/settings/particlesDict

49 lines
1.2 KiB
Plaintext
Raw Normal View History

2023-02-06 19:41:07 +00:00
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName particlesDict;
objectType dictionary;
fileFormat ASCII;
/*---------------------------------------------------------------------------*/
2023-02-06 19:41:07 +00:00
setFields
{
/*
Default value for fields defined for particles
These fields should always be defined for simulations with
spherical particles.
*/
defaultValue
{
2023-02-07 15:58:37 +00:00
// linear velocity (m/s)
velocity realx3 (0 0 0);
// linear acceleration (m/s2)
acceleration realx3 (0 0 0);
// rotational velocity (rad/s)
rotVelocity realx3 (0 0 0);
// name of the particle shape
shapeName word smallSphere;
2023-02-06 19:41:07 +00:00
}
selectors
{}
}
// positions particles
positionParticles
{
2023-02-07 15:58:37 +00:00
// no particle is initially in the simulation
method empty;
2023-02-06 19:41:07 +00:00
2023-02-07 15:58:37 +00:00
// maximum number of particles in the simulation
maxNumberOfParticles 25000;
2023-02-06 19:41:07 +00:00
2023-02-07 15:58:37 +00:00
// perform initial sorting based on morton code?
mortonSorting Yes;
2023-02-06 19:41:07 +00:00
}