phasicFlow/tutorials/sphereGranFlow/V-blender/settings/settingsDict

48 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-02-06 19:41:07 +00:00
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName settingsDict;
2023-02-07 15:58:37 +00:00
objectType dictionary;
/* ------------------------------------------------------------------------- */
2023-02-06 19:41:07 +00:00
2023-02-07 15:58:37 +00:00
run rotatingVblender;
2023-02-06 19:41:07 +00:00
2023-02-07 15:58:37 +00:00
// time step for integration (s)
dt 0.00001;
2023-02-06 19:41:07 +00:00
2023-02-07 15:58:37 +00:00
// start time for simulation
startTime 0;
2023-02-06 19:41:07 +00:00
2023-02-07 15:58:37 +00:00
// end time for simulation
endTime 10;
2023-02-06 19:41:07 +00:00
2023-02-07 15:58:37 +00:00
// time interval for saving the simulation
saveInterval 0.05;
2023-02-06 19:41:07 +00:00
2023-02-07 15:58:37 +00:00
// maximum number of digits for time folder
timePrecision 6;
2023-02-06 19:41:07 +00:00
2023-02-07 15:58:37 +00:00
// gravity vector (m/s2)
g (0 0 -9.8);
2023-02-06 19:41:07 +00:00
/*
Simulation domain
every particles that goes outside this domain is deleted.
*/
2023-02-07 15:58:37 +00:00
2023-02-06 19:41:07 +00:00
domain
{
min (-0.1 -0.4 0);
max (0.86 0.6 0.6);
}
2023-02-07 15:58:37 +00:00
// integration method
integrationMethod AdamsBashforth2;
2023-02-06 19:41:07 +00:00
2023-02-07 15:58:37 +00:00
// report timers?
timersReport Yes;
2023-02-06 19:41:07 +00:00
2023-02-07 15:58:37 +00:00
// time interval for reporting timers
timersReportInterval 0.01;