2022-09-29 12:45:38 +03:30
|
|
|
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
|
|
| phasicFlow File |
|
|
|
|
| copyright: www.cemf.ir |
|
|
|
|
\* ------------------------------------------------------------------------- */
|
|
|
|
objectName settingsDict;
|
2023-04-11 23:09:49 -07:00
|
|
|
objectType dictionary;
|
|
|
|
fileFormat ASCII;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2025-02-23 15:59:37 +03:30
|
|
|
run binarySystemofParticles;
|
2022-09-29 12:45:38 +03:30
|
|
|
|
2025-02-23 15:59:37 +03:30
|
|
|
dt 0.00001; // time step for integration (seconds)
|
2022-09-29 12:45:38 +03:30
|
|
|
|
2025-02-23 15:59:37 +03:30
|
|
|
startTime 0.0; // start time for simulation
|
2022-09-29 12:45:38 +03:30
|
|
|
|
2025-02-23 15:59:37 +03:30
|
|
|
endTime 10.0; // end time for simulation
|
2022-09-29 12:45:38 +03:30
|
|
|
|
2025-02-23 15:59:37 +03:30
|
|
|
saveInterval 0.1; // time interval for saving the simulation
|
2022-09-29 12:45:38 +03:30
|
|
|
|
2025-02-23 15:59:37 +03:30
|
|
|
timePrecision 6; // maximum number of digits for time folder
|
2022-09-29 12:45:38 +03:30
|
|
|
|
2025-02-23 15:59:37 +03:30
|
|
|
g (0 -9.8 0); // gravity vector (m/s2)
|
2022-09-29 12:45:38 +03:30
|
|
|
|
2024-05-19 20:50:00 +04:30
|
|
|
// save necessary (i.e., required) data on disk
|
2024-12-03 13:31:17 +03:30
|
|
|
|
2025-02-23 15:59:37 +03:30
|
|
|
includeObjects (diameter);
|
2024-12-03 13:31:17 +03:30
|
|
|
|
2024-05-19 20:50:00 +04:30
|
|
|
// exclude unnecessary data from saving on disk
|
2024-12-03 13:31:17 +03:30
|
|
|
|
2025-02-23 15:59:37 +03:30
|
|
|
excludeObjects (rVelocity.dy1 pStructPosition.dy1 pStructVelocity.dy1);
|
2024-05-19 20:50:00 +04:30
|
|
|
|
2025-02-23 15:59:37 +03:30
|
|
|
integrationMethod AdamsBashforth2; // integration method
|
2022-09-29 12:45:38 +03:30
|
|
|
|
2025-02-23 15:59:37 +03:30
|
|
|
writeFormat ascii; // data writting format (ascii or binary)
|
2023-04-11 23:09:49 -07:00
|
|
|
|
2025-02-23 15:59:37 +03:30
|
|
|
timersReport Yes; // report timers
|
2022-09-29 12:45:38 +03:30
|
|
|
|
2025-02-23 15:59:37 +03:30
|
|
|
timersReportInterval 0.1; // time interval for reporting timers
|
2024-05-28 13:10:19 +04:30
|
|
|
|