Hi everyone,
After running my program with insert/pack, in the visualisation majority of the particles tend to stick to quadrant region out of the total insertion region defined. I haven't been able to debug the mistake.
Can anyone help me?
I am attaching the input file and log file along with the pics of the result.
Regards
Hari
Attachment | Size |
---|---|
![]() | 25.32 KB |
![]() | 25.13 KB |
![]() | 109.41 KB |
![]() | 248.16 KB |
rberger | Sat, 08/15/2015 - 03:11
global bounding box
Hi,
Your global bounding box only spans that one quadrant during the first time step. Your cylinder axis is at (0,0) with a radius of 3e-3. Your box only spans from (0,0) to (3e-3, 3e-3). After the first timestep the bounding box expands as the particles move beyond the bounding box (thanks to "boundary m m m")
Solution: make the bounding box large enough to contain the insertion cylinder.
region domain block -3e-03 3e-03 -3e-03 3e-03 0. 0.010 units box
Cheers,
Richard
dhari27 | Mon, 08/17/2015 - 09:17
Thanks Richard for your
Thanks Richard for your comment. I changed the domain values accordingly and got the particles to deposit in the whole area.