2022-09-29 10:02:31 +03:30
|
|
|
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
|
|
| phasicFlow File |
|
|
|
|
| copyright: www.cemf.ir |
|
|
|
|
\* ------------------------------------------------------------------------- */
|
2025-07-08 01:06:25 +03:30
|
|
|
objectName settingsDict;
|
|
|
|
objectType dictionary;
|
2023-04-11 23:09:49 -07:00
|
|
|
fileFormat ASCII;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2022-09-29 10:02:31 +03:30
|
|
|
|
2025-07-08 01:06:25 +03:30
|
|
|
run rotatingDrumSmall;
|
2022-09-29 10:02:31 +03:30
|
|
|
|
2025-07-08 01:06:25 +03:30
|
|
|
libs ("libPostprocessData.so");
|
2022-09-29 10:02:31 +03:30
|
|
|
|
2025-07-08 01:06:25 +03:30
|
|
|
auxFunctions postprocessData;
|
2022-09-29 10:02:31 +03:30
|
|
|
|
2025-07-08 01:06:25 +03:30
|
|
|
dt 0.00001; // time step for integration (s)
|
2022-09-29 10:02:31 +03:30
|
|
|
|
2025-07-08 01:06:25 +03:30
|
|
|
startTime 0; // start time for simulation
|
2022-09-29 10:02:31 +03:30
|
|
|
|
2025-07-08 01:06:25 +03:30
|
|
|
endTime 10; // end time for simulation
|
2022-09-29 10:02:31 +03:30
|
|
|
|
2025-07-08 01:06:25 +03:30
|
|
|
saveInterval 0.1; // time interval for saving the simulation
|
2022-09-29 10:02:31 +03:30
|
|
|
|
2025-07-08 01:06:25 +03:30
|
|
|
timePrecision 6; // maximum number of digits for time folder
|
2022-09-29 10:02:31 +03:30
|
|
|
|
2025-07-08 01:06:25 +03:30
|
|
|
g (0 -9.8 0); // gravity vector (m/s2)
|
2022-09-29 10:02:31 +03:30
|
|
|
|
2025-07-08 01:06:25 +03:30
|
|
|
includeObjects (diameter); // save necessary (i.e., required) data on disk
|
2023-04-11 23:09:49 -07:00
|
|
|
|
2025-07-08 01:06:25 +03:30
|
|
|
integrationMethod AdamsBashforth2; // integration method
|
2022-09-29 10:02:31 +03:30
|
|
|
|
2025-07-08 01:06:25 +03:30
|
|
|
integrationHistory off;
|
|
|
|
|
|
|
|
writeFormat ascii; // data writting format (ascii or binary)
|
|
|
|
|
|
|
|
timersReport Yes; // report timers (Yes or No)
|
|
|
|
|
|
|
|
timersReportInterval 0.01; // time interval for reporting timers
|