CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Running, Solving & CFD

Underrelaxation of a geometric field or fvMatrix

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

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 25, 2008, 02:53
Default I was reading the threads deal
  #1
Member
 
Matthias Kern
Join Date: Mar 2009
Location: Karlsruhe, Germany
Posts: 36
Rep Power: 17
make is on a distinguished road
I was reading the threads dealing with the underrelaxation factor, but I'm still wondering.

If I call lets say p.relax() while p is the geometric field of the pressure scalar then it is explicitly relaxing the geometric field by p=alpha*p + (1-alpha)*pold assumed I called p.storePrevIter()?

But if I call UEqn.relax() and UEqn is a fvMatrix then I'm setting the alpha for the main diagonal of the solution matrix means the underrelaxation for the linear solution algorithm?

So what against underrelaxing the linear solution in the inner loop of a transient run?

Like Hrvoje already wrote using SIMPLE for a transient run even needs underrelaxation.

Do I miss a point?

Matthias
make is offline   Reply With Quote

Old   September 25, 2008, 09:22
Default Hi Matthias, " So what agai
  #2
Member
 
Mathieu Olivier
Join Date: Mar 2009
Location: Quebec City, Canada
Posts: 77
Rep Power: 17
mathieu is on a distinguished road
Hi Matthias,

" So what against underrelaxing the linear solution in the inner loop of a transient run? "

Underrelaxation is used to accelerate convergence in an iterative loop. In transient solutions, you have to choices (in pseudo code) :

1. Iterative procedure :

for all timesteps
{
do while convergence
{
solve momentum
correct pressure and momentun (SIMPLE, PISO, etc.)
}
}


2. Non iterative procedure :

for all timesteps
{
solve momentum
correct pressure and momentun (PISO, etc.)
}

Transient solvers from the standard OpenFOAM package use the non iterative procedure which require a smaller timestep to respect the CFL condition. The non iterative procedure also require a more accurate pressure-velocity coupling (like PISO). If you use relaxation in a non iterative procedure, you will change the solution itself. Hope this helps.

Mathieu
mathieu is offline   Reply With Quote

Old   September 25, 2008, 10:17
Default Hello Mathieu, thanks for you
  #3
Member
 
Matthias Kern
Join Date: Mar 2009
Location: Karlsruhe, Germany
Posts: 36
Rep Power: 17
make is on a distinguished road
Hello Mathieu,
thanks for your reply. What you mentioned is what I understand as a relaxation of the outer loop.
Lets say I call UEqn.solve() then it is starting the linear solver till a certain convergence criteria is reached. After that pEqn.solve() is called and so on in a segregated manner.
So I don't want to underelax between this segregated steps I want to change the relaxation for the linear solver step, so during the linear solver is running.
Isn't that simply influencing the number of iteration steps I need to reach the convergence criteria of the linear solver, but the result of the linear solver keeps the same??

Did I understand the way OF underelaxes wrong?

Matthias
make is offline   Reply With Quote

Old   September 25, 2008, 10:47
Default Hi Matthias, I'm not an exp
  #4
Member
 
Mathieu Olivier
Join Date: Mar 2009
Location: Quebec City, Canada
Posts: 77
Rep Power: 17
mathieu is on a distinguished road
Hi Matthias,

I'm not an expert with the code, but as far as I understand, if you want to relax the linear solver step then use UEqn.relax() (see that post : http://www.cfd-online.com/OpenFOAM_D...tml?1201846208 ). Regards,

Mathieu
mathieu 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
FvMatrix coefficients shrina OpenFOAM Running, Solving & CFD 10 October 3, 2013 14:38
Energy underrelaxation Bernhard Kubicek FLUENT 0 November 24, 2008 08:43
How to look at the coefficients from fvMatrix marco7 OpenFOAM Running, Solving & CFD 2 September 11, 2008 03:58
False Transient UnderRelaxation Ihab Sraj CFX 5 June 11, 2006 12:42
DPM: more particles or underrelaxation? Wouter FLUENT 7 November 28, 2005 10:32


All times are GMT -4. The time now is 10:57.