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