rotaryAirlock settingsDict
This commit is contained in:
parent
fa1211acf8
commit
98c8116fd3
|
@ -6,7 +6,7 @@ objectName geometryDict;
|
||||||
objectType dictionary;
|
objectType dictionary;
|
||||||
fileFormat ASCII;
|
fileFormat ASCII;
|
||||||
/*---------------------------------------------------------------------------*/
|
/*---------------------------------------------------------------------------*/
|
||||||
run rotatingValve;
|
run rotatingAirLockValve;
|
||||||
|
|
||||||
dt 0.00001; // time step for integration (s)
|
dt 0.00001; // time step for integration (s)
|
||||||
|
|
||||||
|
@ -16,24 +16,21 @@ endTime 7; // end time for simulation
|
||||||
|
|
||||||
saveInterval 0.05; // time interval for saving the simulation
|
saveInterval 0.05; // time interval for saving the simulation
|
||||||
|
|
||||||
timePrecision 6; // maximum number of digits for time folder
|
timePrecision 5; // maximum number of digits for time folder
|
||||||
|
|
||||||
g (0 -9.8 0); // gravity vector (m/s2)
|
g (0 -9.8 0); // gravity vector (m/s2)
|
||||||
|
|
||||||
/*
|
// save necessary (i.e., required) data on disk
|
||||||
Simulation domain every particles that goes outside this domain is deleted
|
includeObjects (diameter mass);
|
||||||
*/
|
|
||||||
|
|
||||||
includeObjects (diameter); // save necessary (i.e., required) data on disk
|
|
||||||
|
|
||||||
// exclude unnecessary data from saving on disk
|
// exclude unnecessary data from saving on disk
|
||||||
excludeObjects (rVelocity.dy1 pStructPosition.dy1 pStructVelocity.dy1);
|
excludeObjects (rVelocity.dy1 pStructPosition.dy1 pStructVelocity.dy1);
|
||||||
|
|
||||||
integrationMethod AdamsBashforth2; // integration method
|
integrationMethod AdamsBashforth2;
|
||||||
|
|
||||||
writeFormat ascii; // data writting format (ascii or binary)
|
writeFormat ascii; // data writting format (ascii or binary)
|
||||||
|
|
||||||
timersReport Yes; // report timers: Yes or No
|
timersReport Yes; // report timers: Yes or No
|
||||||
|
|
||||||
timersReportInterval 0.01; // time interval for reporting timers
|
timersReportInterval 0.1; // time interval for reporting timers
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue