mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-07-28 03:27:05 +00:00
tote blender corrected
This commit is contained in:
@ -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;
|
Reference in New Issue
Block a user