CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > ANSYS > CFX

Particle fate "Integration error"

Register Blogs Members List Search Today's Posts Mark Forums Read

Like Tree3Likes
  • 2 Post By altano
  • 1 Post By Julian K.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   November 8, 2010, 16:49
Default Particle fate "Integration error"
  #1
Super Moderator
 
Glenn Horrocks
Join Date: Mar 2009
Location: Sydney, Australia
Posts: 17,696
Rep Power: 143
ghorrocks is just really niceghorrocks is just really niceghorrocks is just really niceghorrocks is just really nice
Time for me to ask a question for a change

I am doing a particle tracking simulation and I am getting almost half my particle tracks end with fate "Integration error". So far I have not been able to find what the problem is. Does anybody know what is causing this or how to fix it?

  • The simulation is in incompressible air
  • Driven by a momentum source.
  • The simulation is transient.
  • The simulation is well converged and with a mesh and time step which has been shown adequate for the accuracy I require.
  • The particles are on-way coupled to the flow.
  • The residence time of most particles is very short (2 or 3 time steps)
Below is a snippet from the output file. As you can see, about half the particles disappear with fate "Integration error".

Code:
======================================================================
 |                      Timestepping Information                      |
 ----------------------------------------------------------------------
 |       Timestep       |  RMS Courant Number  |  Max Courant Number  |
 +----------------------+----------------------+----------------------+
 |      5.0000E-05      |          1.49        |         16.88        |
 ----------------------------------------------------------------------

 ======================================================================
 TIME STEP =   865 SIMULATION TIME = 4.3250E-02 CPU SECONDS = 1.095E+05
 ----------------------------------------------------------------------
 COEFFICIENT LOOP ITERATION =    1              CPU SECONDS = 1.095E+05
 ----------------------------------------------------------------------
 |       Equation       | Rate | RMS Res | Max Res |  Linear Solution |
 +----------------------+------+---------+---------+------------------+
 | U-Mom                | 0.98 | 9.3E-05 | 8.2E-03 |       1.6E-02  OK|
 | V-Mom                | 0.99 | 1.0E-04 | 4.8E-03 |       2.6E-02  OK|
 | W-Mom                | 0.98 | 1.1E-04 | 6.6E-03 |       1.8E-02  OK|
 | P-Mass               | 0.97 | 2.2E-05 | 2.7E-03 |  5.1  9.4E-02  OK|
 +----------------------+------+---------+---------+------------------+
 ----------------------------------------------------------------------
 COEFFICIENT LOOP ITERATION =    2              CPU SECONDS = 1.095E+05
 ----------------------------------------------------------------------
 |       Equation       | Rate | RMS Res | Max Res |  Linear Solution |
 +----------------------+------+---------+---------+------------------+
 | U-Mom                | 0.41 | 3.8E-05 | 3.9E-03 |       4.0E-03  OK|
 | V-Mom                | 0.60 | 6.2E-05 | 4.7E-03 |       4.0E-03  OK|
 | W-Mom                | 0.63 | 6.9E-05 | 3.8E-03 |       4.0E-03  OK|
 | P-Mass               | 0.60 | 1.4E-05 | 2.2E-03 |  9.2  4.3E-02  OK|
 +----------------------+------+---------+---------+------------------+

 ======================================================================
                          Particle Diagnostics
 ======================================================================

 +--------------------------------------------------------------------+
 |                      Particle Fate Diagnostics                     |
 +--------------------------------------------------------------------+
 | Particle type          | Fate type                       Particles |
 +--------------------------------------------------------------------+
 | Ink                    | Entered domain                :      2560 |
 |                        | Continue from last time step  :     10676 |
 |                        | Left domain                   :         1 |
 |                        | Collected on walls            :      1361 |
 |                        | Waiting for next time step    :     10669 |
 |                        | Integration error             :      1205 |
 +--------------------------------------------------------------------+
The documentation is not very helpful on this. It just says "This message indicates that the tracking of these particles was terminated due to an unexpected error in the particle tracking integration."
ghorrocks is offline   Reply With Quote

Old   November 10, 2010, 11:25
Default
  #2
Senior Member
 
Bharath kumar
Join Date: Apr 2009
Posts: 169
Rep Power: 17
bharath is on a distinguished road
hi ghorrocks,
the reason may be if the particles trapped in recirculation zone for a long time this kind of error occur otherwise the time step won't suits well for the problem.
bharath is offline   Reply With Quote

Old   November 10, 2010, 16:27
Default
  #3
Super Moderator
 
Glenn Horrocks
Join Date: Mar 2009
Location: Sydney, Australia
Posts: 17,696
Rep Power: 143
ghorrocks is just really niceghorrocks is just really niceghorrocks is just really niceghorrocks is just really nice
I see. There are no recirculations where the particles are travelling, but I do have an unusually small geometry. I will look into tolerances on minimum particle movements.

Thanks for the tip!
ghorrocks is offline   Reply With Quote

Old   March 11, 2011, 13:57
Default
  #4
New Member
 
Join Date: Jun 2010
Posts: 21
Rep Power: 15
altano is on a distinguished road
Hi ghorrocks

Increasing the value of "number of integration steps per element" could help. Integration error problem solved by that way in my case.

It appears it's late response for your work but it may help others
Julian K. and claudy.daniel like this.
altano is offline   Reply With Quote

Old   March 13, 2011, 05:38
Default
  #5
Super Moderator
 
Glenn Horrocks
Join Date: Mar 2009
Location: Sydney, Australia
Posts: 17,696
Rep Power: 143
ghorrocks is just really niceghorrocks is just really niceghorrocks is just really niceghorrocks is just really nice
Thanks for the comment. I had not tried that one.

But unfortunately that piece of work is long finished and I doubt I will get to play with it again. But you never know.
ghorrocks is offline   Reply With Quote

Old   December 13, 2011, 11:03
Default
  #6
Member
 
Julian Krick
Join Date: May 2009
Location: Guelph
Posts: 88
Rep Power: 16
Julian K. is on a distinguished road
Quote:
Originally Posted by altano View Post
Increasing the value of "number of integration steps per element" could help.
If you increase the "Number of Integration Steps per Element" (nispe), you may have to increase the "Maximum Number Integration Steps" (mnis), as well:
mnis = nsipe * "number of elements a particle travels through"

Thus, if nispe = 1e3 and mnis = 1e6, a particle can travel trough 1e3 elements, before it "Exceeded Integration Limit".

Another reason for a high number of particle loss due to an "Integration Error", may be that the initial velocity of the particles is set to zero. I released particles from a sphere with a velocity of 0 m/s and ca. 50% of the particles got lost due to an integration error. After assigning an initial velocity of 1 m/s, no particles experienced this error.
Stanley90 likes this.
__________________
grid generation: ICEM CFD 13.0
solver: CFX 13.0
Julian K. is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Particle Tracking for ion Jun CFX 2 August 31, 2010 08:19
DPM UDF particle position using the macro P_POS(p)[i] dm2747 FLUENT 0 April 17, 2009 01:29
particle tracking collection tank Neser CFX 1 June 1, 2006 10:06
Particle Trajectory calculation when particle hit yueroo FLUENT 2 February 28, 2001 04:26
Particle Fate Arturo Ortiz FLUENT 4 September 29, 2000 08:06


All times are GMT -4. The time now is 01:59.