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

49 lines
1.2 KiB
Plaintext
Raw Normal View History

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