2023-07-04 14:05:26 +03:30
|
|
|
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
|
|
| phasicFlow File |
|
|
|
|
| copyright: www.cemf.ir |
|
|
|
|
\* ------------------------------------------------------------------------- */
|
2025-04-25 16:14:16 +03:30
|
|
|
objectName settingsDict;
|
|
|
|
objectType dictionary;
|
|
|
|
fileFormat ASCII;
|
2023-09-25 17:39:22 +03:30
|
|
|
/*---------------------------------------------------------------------------*/
|
2025-02-20 17:27:36 +03:30
|
|
|
|
2025-04-25 16:14:16 +03:30
|
|
|
run screwConveyor;
|
2023-07-04 14:05:26 +03:30
|
|
|
|
2025-04-25 16:14:16 +03:30
|
|
|
dt 0.00002; // time step for integration (s)
|
2023-07-04 14:05:26 +03:30
|
|
|
|
2025-04-25 16:14:16 +03:30
|
|
|
startTime 0; // start time for simulation
|
2023-07-04 14:05:26 +03:30
|
|
|
|
2025-04-25 16:14:16 +03:30
|
|
|
endTime 20; // end time for simulation
|
2023-07-04 14:05:26 +03:30
|
|
|
|
2025-04-25 16:14:16 +03:30
|
|
|
saveInterval 0.025; // time interval for saving the simulation
|
2023-07-04 14:05:26 +03:30
|
|
|
|
2025-04-25 16:14:16 +03:30
|
|
|
timePrecision 4; // maximum number of digits for time folder
|
2023-07-04 14:05:26 +03:30
|
|
|
|
2025-04-25 16:14:16 +03:30
|
|
|
g (0 -9.8 0); // gravity vector (m/s2)
|
2023-07-04 14:05:26 +03:30
|
|
|
|
2025-04-25 16:14:16 +03:30
|
|
|
writeFormat binary; // field files will be saved in binary format
|
2023-07-04 14:05:26 +03:30
|
|
|
|
2025-02-20 17:27:36 +03:30
|
|
|
// A list of options: AB2, AB3, AB4, AB5
|
2025-04-25 16:14:16 +03:30
|
|
|
integrationMethod AdamsBashforth4; // integration method
|
|
|
|
|
|
|
|
integrationHistory off;
|
2025-02-20 17:27:36 +03:30
|
|
|
|
|
|
|
// overrides the default behavior
|
|
|
|
includeObjects (diameter);
|
2023-07-04 14:05:26 +03:30
|
|
|
|
2025-02-20 17:27:36 +03:30
|
|
|
// exclude unnecessary data from saving on disk
|
2025-04-25 16:14:16 +03:30
|
|
|
excludeObjects ();
|
|
|
|
|
2025-02-20 17:27:36 +03:30
|
|
|
|
2025-04-25 16:14:16 +03:30
|
|
|
timersReport Yes; // report timers?
|
2024-12-28 13:46:09 +03:30
|
|
|
|
2025-04-25 16:14:16 +03:30
|
|
|
timersReportInterval 0.1; // time interval for reporting timers
|