mirror of
https://github.com/PhasicFlow/phasicFlow.git
synced 2025-06-12 16:26:23 +00:00
updated V1.0 RotaryDrumWithBaffle
This commit is contained in:
@ -6,43 +6,29 @@ objectName settingsDict;
|
||||
objectType dictionary;
|
||||
fileFormat ASCII;
|
||||
/*---------------------------------------------------------------------------*/
|
||||
run RotatingDrumwithBaffles;
|
||||
|
||||
run RotatingDrumwithBaffles;
|
||||
dt 0.00001; // time step for integration (s)
|
||||
|
||||
// time step for integration (s)
|
||||
dt 0.00001;
|
||||
startTime 0; // start time for simulation
|
||||
|
||||
// start time for simulation
|
||||
startTime 0;
|
||||
endTime 10; // end time for simulation
|
||||
|
||||
// end time for simulation
|
||||
endTime 10;
|
||||
saveInterval 0.05; // time interval for saving the simulation
|
||||
|
||||
// time interval for saving the simulation
|
||||
saveInterval 0.05;
|
||||
timePrecision 6; // maximum number of digits for time folder
|
||||
|
||||
// maximum number of digits for time folder
|
||||
timePrecision 6;
|
||||
g (0 -9.8 0); // gravity vector (m/s2)
|
||||
|
||||
// gravity vector (m/s2)
|
||||
g (0 -9.8 0);
|
||||
includeObjects (diameter); // save necessary (i.e., required) data on disk
|
||||
|
||||
/*Simulation domain*/
|
||||
/* Every particles that goes outside this domain is deleted.*/
|
||||
domain
|
||||
{
|
||||
min (-0.328 0.095 -0.025);
|
||||
max (-0.068 0.355 0.125);
|
||||
}
|
||||
// exclude unnecessary data from saving on disk
|
||||
excludeObjects (rVelocity.dy1 pStructPosition.dy1 pStructVelocity.dy1);
|
||||
|
||||
// integration method
|
||||
integrationMethod AdamsBashforth3;
|
||||
integrationMethod AdamsBashforth2; // integration method
|
||||
|
||||
// binary or ascii for saving data
|
||||
writeFormat ascii;
|
||||
writeFormat ascii; // data writting format (ascii or binary)
|
||||
|
||||
// report timers?
|
||||
timersReport Yes;
|
||||
timersReport Yes; // report timers (Yes or No)
|
||||
|
||||
// time interval for reporting timers
|
||||
timersReportInterval 0.01;
|
||||
timersReportInterval 0.01; // time interval for reporting timers
|
||||
|
Reference in New Issue
Block a user