2023-02-07 10:31:26 +03:30
|
|
|
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
|
|
| phasicFlow File |
|
|
|
|
| copyright: www.cemf.ir |
|
|
|
|
\* ------------------------------------------------------------------------- */
|
|
|
|
objectName particlesDict;
|
|
|
|
objectType dictionary;
|
2023-04-11 23:09:49 -07:00
|
|
|
fileFormat ASCII;
|
2023-02-07 18:59:13 +03:30
|
|
|
/*---------------------------------------------------------------------------*/
|
2023-04-11 23:09:49 -07:00
|
|
|
|
2023-02-07 10:31:26 +03:30
|
|
|
setFields
|
|
|
|
{
|
|
|
|
defaultValue
|
|
|
|
{
|
2023-02-07 18:59:13 +03:30
|
|
|
// linear velocity (m/s)
|
|
|
|
velocity realx3 (0 0 0);
|
|
|
|
// linear acceleration (m/s2)
|
|
|
|
acceleration realx3 (0 0 0);
|
|
|
|
// rotational velocity (rad/s)
|
2023-09-25 17:39:22 +03:30
|
|
|
rVelocity realx3 (0 0 0);
|
2023-02-07 18:59:13 +03:30
|
|
|
// name of the particle shape
|
2023-02-20 12:31:12 +03:30
|
|
|
shapeName word smallSphere;
|
2023-02-07 10:31:26 +03:30
|
|
|
}
|
|
|
|
|
|
|
|
selectors
|
|
|
|
{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// positions particles
|
|
|
|
positionParticles
|
|
|
|
{
|
2023-02-07 18:59:13 +03:30
|
|
|
// creates the required spaces with zero particles (empty).
|
|
|
|
method empty;
|
|
|
|
// maximum number of particles in the simulation
|
|
|
|
maxNumberOfParticles 20050;
|
|
|
|
// perform initial sorting based on morton code?
|
|
|
|
mortonSorting Yes;
|
2023-02-07 10:31:26 +03:30
|
|
|
|
|
|
|
}
|