phasicFlow/tutorials/sphereGranFlow/toteblender/settings/settingsDict

43 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-03-26 15:27:44 +00:00
/* -------------------------------*- C++ -*--------------------------------- *\
| phasicFlow File |
| copyright: www.cemf.ir |
\* ------------------------------------------------------------------------- */
objectName settingsDict;
objectType dictionary;;
/*---------------------------------------------------------------------------*/
run toteBlender;
2023-03-31 15:21:24 +00:00
2023-03-26 15:27:44 +00:00
// time step for integration (s)
2023-03-31 15:21:24 +00:00
dt 0.00004;
2023-03-26 15:27:44 +00:00
// start time for simulation
startTime 0;
2023-03-31 15:21:24 +00:00
2023-03-26 15:27:44 +00:00
// end time for simulation
endTime 10;
2023-03-31 15:21:24 +00:00
2023-03-26 15:27:44 +00:00
// time interval for saving the simulation
2023-03-31 15:21:24 +00:00
saveInterval 0.05;
2023-03-26 15:27:44 +00:00
// maximum number of digits for time folder
2023-03-31 15:21:24 +00:00
timePrecision 3;
2023-03-26 15:27:44 +00:00
// gravity vector (m/s2)
g (0 0 -9.8);
/* Simulation domain */
/* every particles that goes outside this domain is deleted. */
domain
{
2023-03-26 17:53:50 +00:00
min (-0.3 -0.3 -0.3);
2023-03-26 15:27:44 +00:00
max (0.5 0.5 0.5);
}
2023-03-31 15:21:24 +00:00
2023-03-26 15:27:44 +00:00
// integration method
2023-03-31 15:21:24 +00:00
integrationMethod AdamsMoulton4;
2023-03-26 15:27:44 +00:00
// report timers?
timersReport Yes;
2023-03-31 15:21:24 +00:00
2023-03-26 15:27:44 +00:00
// time interval for reporting timers
2023-03-31 15:21:24 +00:00
timersReportInterval 0.02;