tote blender corrected

This commit is contained in:
Hamidreza Norouzi
2023-03-31 08:21:24 -07:00
parent 7a8931ea9d
commit c3a729e2d3
6 changed files with 217 additions and 116 deletions

View File

@ -6,16 +6,22 @@ objectName settingsDict;
objectType dictionary;;
/*---------------------------------------------------------------------------*/
run toteBlender;
// time step for integration (s)
dt 0.00001;
dt 0.00004;
// start time for simulation
startTime 0;
// end time for simulation
endTime 10;
// time interval for saving the simulation
saveInterval 0.1;
saveInterval 0.05;
// maximum number of digits for time folder
timePrecision 6;
timePrecision 3;
// gravity vector (m/s2)
g (0 0 -9.8);
@ -26,9 +32,12 @@ domain
min (-0.3 -0.3 -0.3);
max (0.5 0.5 0.5);
}
// integration method
integrationMethod AdamsBashforth2;
integrationMethod AdamsMoulton4;
// report timers?
timersReport Yes;
// time interval for reporting timers
timersReportInterval 0.01;
timersReportInterval 0.02;