2023-04-30 18:42:35 +04:30
|
|
|
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
|
|
| phasicFlow File |
|
|
|
|
| copyright: www.cemf.ir |
|
|
|
|
\* ------------------------------------------------------------------------- */
|
2024-12-28 13:09:06 +03:30
|
|
|
objectName particlesDict;
|
2023-04-30 18:42:35 +04:30
|
|
|
objectType dictionary;
|
2023-05-01 16:18:49 +04:30
|
|
|
fileFormat ASCII;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2023-04-30 18:42:35 +04:30
|
|
|
setFields
|
|
|
|
{
|
2024-12-28 13:09:06 +03:30
|
|
|
/*
|
|
|
|
Default value for fields defined for particles:
|
|
|
|
|
|
|
|
These fields should always be defined for simulations with spherical particles
|
|
|
|
*/
|
|
|
|
|
2023-04-30 18:42:35 +04:30
|
|
|
defaultValue
|
|
|
|
{
|
2025-02-27 20:53:20 +03:30
|
|
|
velocity realx3 (0 0 0); // linear velocity (m/s)
|
2023-05-01 16:18:49 +04:30
|
|
|
|
2025-02-27 20:53:20 +03:30
|
|
|
acceleration realx3 (0 0 0); // linear acceleration (m/s2)
|
2023-05-01 16:18:49 +04:30
|
|
|
|
2025-02-27 20:53:20 +03:30
|
|
|
rVelocity realx3 (0 0 0); // rotational velocity (rad/s)
|
2023-05-01 16:18:49 +04:30
|
|
|
|
2025-02-27 20:53:20 +03:30
|
|
|
shapeName word sphere; // name of the particle shape
|
2023-04-30 18:42:35 +04:30
|
|
|
}
|
|
|
|
|
|
|
|
selectors
|
2024-12-28 13:09:06 +03:30
|
|
|
{
|
|
|
|
shapeAssigne
|
|
|
|
{
|
2025-02-27 20:53:20 +03:30
|
|
|
selector stridedRange; // other options: box, cylinder, sphere, randomPoints
|
2024-12-28 13:09:06 +03:30
|
|
|
|
|
|
|
stridedRangeInfo
|
|
|
|
{
|
2025-02-27 20:53:20 +03:30
|
|
|
begin 0; // begin index of points
|
2024-12-28 13:09:06 +03:30
|
|
|
|
2025-02-27 20:53:20 +03:30
|
|
|
end 50000; // end index of points
|
2024-12-28 13:09:06 +03:30
|
|
|
|
2025-02-27 20:53:20 +03:30
|
|
|
stride 3; // stride for selector
|
2024-12-28 13:09:06 +03:30
|
|
|
}
|
|
|
|
|
|
|
|
fieldValue // fields that the selector is applied to
|
|
|
|
{
|
|
|
|
shapeName word sphere; // sets shapeName of the selected points to largeSphere
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-04-30 18:42:35 +04:30
|
|
|
}
|
|
|
|
|
2024-12-28 13:09:06 +03:30
|
|
|
positionParticles // positions particles
|
2023-04-30 18:42:35 +04:30
|
|
|
{
|
2025-03-02 12:56:59 +03:30
|
|
|
method empty; // other options: random and ordered
|
2023-04-30 18:42:35 +04:30
|
|
|
}
|