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