2023-04-30 14:12:35 +00:00
|
|
|
/* -------------------------------*- C++ -*--------------------------------- *\
|
|
|
|
| phasicFlow File |
|
|
|
|
| copyright: www.cemf.ir |
|
|
|
|
\* ------------------------------------------------------------------------- */
|
2023-05-01 11:48:49 +00:00
|
|
|
objectName geometryDict;
|
|
|
|
objectType dictionary;
|
|
|
|
fileFormat ASCII;
|
|
|
|
/*---------------------------------------------------------------------------*/
|
2023-04-30 14:12:35 +00:00
|
|
|
|
2023-05-01 11:48:49 +00:00
|
|
|
run rotatingValve;
|
2023-04-30 14:12:35 +00:00
|
|
|
|
2023-05-01 11:48:49 +00:00
|
|
|
// time step for integration (s)
|
|
|
|
dt 0.00001;
|
2023-04-30 14:12:35 +00:00
|
|
|
|
2023-05-01 11:48:49 +00:00
|
|
|
// start time for simulation
|
|
|
|
startTime 0;
|
2023-04-30 14:12:35 +00:00
|
|
|
|
2023-05-01 11:48:49 +00:00
|
|
|
// end time for simulation
|
|
|
|
endTime 7;
|
2023-04-30 14:12:35 +00:00
|
|
|
|
2023-05-01 11:48:49 +00:00
|
|
|
// time interval for saving the simulation
|
|
|
|
saveInterval 0.05;
|
2023-04-30 14:12:35 +00:00
|
|
|
|
2023-05-01 11:48:49 +00:00
|
|
|
// maximum number of digits for time folder
|
|
|
|
timePrecision 6;
|
2023-04-30 14:12:35 +00:00
|
|
|
|
2023-05-01 11:48:49 +00:00
|
|
|
// gravity vector (m/s2)
|
|
|
|
g (0 -9.8 0);
|
2023-04-30 14:12:35 +00:00
|
|
|
|
|
|
|
/*
|
2023-05-01 11:48:49 +00:00
|
|
|
Simulation domain every particles that goes outside this domain is deleted.
|
2023-04-30 14:12:35 +00:00
|
|
|
*/
|
2023-05-01 11:48:49 +00:00
|
|
|
|
2023-04-30 14:12:35 +00:00
|
|
|
domain
|
|
|
|
{
|
|
|
|
min (0.397538 0.178212 0.00);
|
|
|
|
max (0.725537 0.600214 0.06);
|
|
|
|
}
|
|
|
|
|
2023-05-01 11:48:49 +00:00
|
|
|
// integration method
|
|
|
|
integrationMethod AdamsBashforth3;
|
2023-04-30 14:12:35 +00:00
|
|
|
|
2023-05-01 11:48:49 +00:00
|
|
|
// report timers?
|
|
|
|
timersReport Yes;
|
2023-04-30 14:12:35 +00:00
|
|
|
|
2023-05-01 11:48:49 +00:00
|
|
|
// time interval for reporting timers
|
|
|
|
timersReportInterval 0.01;
|
2023-04-30 14:12:35 +00:00
|
|
|
|