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

Convergence

Register Blogs Community New Posts Updated Threads Search

Like Tree3Likes
  • 2 Post By Henry Weller (Henry)
  • 1 Post By Henry Weller (Henry)

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   January 5, 2005, 14:14
Default Dear Sirs, I know OpenFOAM
  #1
Luiz Eduardo Bittencourt Sampaio (Sampaio)
Guest
 
Posts: n/a
Dear Sirs,

I know OpenFOAM is tunned to achieve better performance than comercial codes in good meshes, and I can gladly see it do so.

However I am having some problems with convergence with kepsilon model (also tried LRR, and a v2f I implemented myself - still testing). I dont think my mesh is that bad, but I would like to tunne my parameters so that I get a more robust solver.

Does anyone out there has any guidelines on schemes and parameters towards a more robust solver?

I have observed some issues regarding kepsilon, for instance:

1- if I set the tolerance for k and epsilon equation to 10^-5, my solution blows up. Setting it to 0.001 corrects it, but it limits my accuracy to 0.001, where I would like it to be much better.

2- velocity usually converge faster, while pressure residuals stagnate at some level. Is there a way to modify those parameters so that pressure converges faster?

3- I tried to use other solvers, since I thought I might be having trouble because of coupling between the equations (mostly in my v2f implementation). Is it right to say a GaussSeidel solver is more robust when there is a strong coupling than a BICCG? I set number of sweeps to 1 and relative tolerance to 0.999 to guarantee that I was "mixing well" the equations (one sweep for each variable). Is there a misconception? (I know it is slower). Do you think BICCG could do as a good job as GaussSeidel in strongly coupled systems, while still being much faster? (Would you limit the number of iterations the same way I did for GS?)

I apreciate any comments and help.
Luiz
  Reply With Quote

Old   January 5, 2005, 14:35
Default 1) I have not seen this beha
  #2
Henry Weller (Henry)
Guest
 
Posts: n/a
1) I have not seen this behaviour before and without knowing more about your case and setup I don't think I can help much except to offer these general guidelines:

First it's a very good idea to start by running potentialFoam, this is a good way of checking the BCs as well as generating a sensible starting U field.

What you really need next is a decent estimate for the inital turbulence property fields but we haven't yet written such a utility so what we tend to do is start the run with very low under-relaxation on these fields, say 0.05 or even lower. After a few iterations this can be raised to a normal level. If you are running transient you might find it useful to start by running simpleFoam first to evolve the turbulence fields to a sensible distribution.

After doing these things you should find you can have the tolerance on k as tight as you like.

2) We don't normalise the residuals the same way as other codes and one consequence is that p may appear not to converge adequately. However, we find that so long as U has converged well it doesn't matter that the p residual is higher. The best thing is to look at the way the fields are evolving.

3) I don't think there is any reason to use GaussSeidel over BICCG, the later is a much more efficient solver and we have never experienced problems with it.
Tushar@cfd and lpz456 like this.
  Reply With Quote

Old   January 5, 2005, 14:37
Default P.S. I have just finished an
  #3
Henry Weller (Henry)
Guest
 
Posts: n/a
P.S. I have just finished an initial implementation of the realizable k-epsilon model which I will include in the next release. Would you like to contribute your v2f implementation?
lpz456 likes this.
  Reply With Quote

Old   January 5, 2005, 15:13
Default Sure! I was already ready to
  #4
Luiz Eduardo Bittencourt Sampaio (Sampaio)
Guest
 
Posts: n/a
Sure! I was already ready to contribute, as soon as I clean out some coments and some dirty implementations. Also it did not passed my tests (mostly because of problems in convergence), but if you want I can send you right now.

Do you want now?

Sincerely yours,
Luiz
  Reply With Quote

Old   January 5, 2005, 15:18
Default It's OK, it can wait until yo
  #5
Henry Weller (Henry)
Guest
 
Posts: n/a
It's OK, it can wait until you are happy with it. If you could make it consistent in style with the models already in FOAM it will make my life easier because I am very particular about programming style and will go through it before I commit it to the release. I know I am a bit anal about programming style, it's just the way I am and as a consequence the way FOAM is :-)
  Reply With Quote

Old   January 5, 2005, 15:57
Default I am doing my best. http://ww
  #6
Luiz Eduardo Bittencourt Sampaio (Sampaio)
Guest
 
Posts: n/a
I am doing my best. I used your kepsilon as a model for the classes, styles, etc...

I am still trying to get OpenFOAM fully functional in my computer. It used to work with FOAM, but when I migrated to OpenFOAM, I get segmentation fault. (The compilation was ok, but when I run the case, I got this message).

As soon as I solve this problem I will test your suggestions...

Thanks again,
Luiz.

PS- I had a (memory) problem with my password and did not have the opportunity to wish you guys a Marry Xstmas and HNY, as well as thank you for this wonderful code.
  Reply With Quote

Old   July 18, 2005, 01:39
Default Hi I am a new user of Open
  #7
ghanshyam
Guest
 
Posts: n/a
Hi

I am a new user of OpenFOAM and would like to learn how to hook my own module to it. Earlier I implemented v2f model in Fluent using UDF and it works fine. I would appreciate if you could share your v2f-OpenFOAM implementation with me and help me out in compilation procedure. Currently I am validating various turbulence models implemented in OpenFOAM with that in Fluent for backward facing step, wall and impinging jet cases. I would also like to know how to invoke energy equation, so that I can validate for heat transfer cases.

Thanks and regards

GS
  Reply With Quote

Old   July 20, 2005, 05:29
Default Hello Henry, I am running s
  #8
ghanshyam
Guest
 
Posts: n/a
Hello Henry,

I am running simpleFoam with realizable k-epsilon(RKE) model to validate backward facing step case. RKE code is the same what you have written and the modifications required to make it visible in the GUI have been made. Now I can select it from the FoamX GUI. While running RKE, I am finding it difficult to get properly developed flow and results are not good even after running it for 12000 iterations. As compared to RKE standard k-epsilon(SKE) model takes just 1000 iteratios. Also, I have looked at both the codes i.e. RKE as well as SKE, following differences have been observed:

RKE epsilon and k equations:
------------------------------------------
tmp<fvscalarmatrix> epsEqn
(
fvm::ddt(epsilon_)
+ fvm::div(phi_, epsilon_)
- fvm::laplacian(DepsilonEff(), epsilon_)
==
C1*magS*epsilon_ + boundarySource
- fvm::Sp
(
C2*epsilon_/(k_ + sqrt(nu()*epsilon_)) + boundaryCentral,
epsilon_
)
);

epsEqn().relax();
solve(epsEqn);
bound(epsilon_, epsilon0_);


// Turbulent kinetic energy equation

tmp<fvscalarmatrix> kEqn
(
fvm::ddt(k_)
+ fvm::div(phi_, k_)
- fvm::laplacian(DkEff(), k_)
==
G - fvm::Sp(epsilon_/k_, k_)
);
-------------------------------------------

SKE epsilon and k equations:

tmp<fvscalarmatrix> epsEqn
(
fvm::ddt(epsilon_)
+ fvm::div(phi_, epsilon_)
- fvm::Sp(fvc::div(phi_), epsilon_)
- fvm::laplacian(DepsilonEff(), epsilon_)
==
C1*G*epsilon_/k_ + boundarySource
- fvm::Sp(C2*epsilon_/k_ + boundaryCentral, epsilon_)
);

epsEqn().relax();
solve(epsEqn);
bound(epsilon_, epsilon0_);


// Turbulent kinetic energy equation

tmp<fvscalarmatrix> kEqn
(
fvm::ddt(k_)
+ fvm::div(phi_, k_)
- fvm::Sp(fvc::div(phi_), k_)
- fvm::laplacian(DkEff(), k_)
==
G
- fvm::Sp(epsilon_/k_, k_)
);
----------------------------------------

Why do we have terms "- fvm::Sp(fvc::div(phi_), epsilon_)" and "- fvm::Sp(fvc::div(phi_)", k_) in SKE but not in RKE. I have looked at RNG model also, and these terms are absent there as well.

In the file "realizableKE.H" we have :

---------------------------------------------
tmp<volscalarfield> rCmu
(
const volTensorField& gradU,
const volScalarField& S2,
const volScalarField& magS
);

tmp<volscalarfield> rCmu
(
const volTensorField& gradU
);

--------------------------------------------

Why do we need to define "gradU" two times. Kindly excuse me if I am asking stupid questions. I am new to C++ and OOPS.

"Cmu" in RKE is computed as "rCmu", therefore do we really need to read "Cmu"?

The other constants like "A0", "C2", "alphak" and "alphaEps" are passed correctly.

Regards
GS
  Reply With Quote

Old   July 20, 2005, 05:32
Default Hello Henry, I am running s
  #9
ghanshyam
Guest
 
Posts: n/a
Hello Henry,

I am running simpleFoam with realizable k-epsilon(RKE) model to validate backward facing step case. RKE code is the same what you have written and the modifications required to make it visible in the GUI have been made. Now I can select it from the FoamX GUI. While running RKE, I am finding it difficult to get properly developed flow and results are not good even after running it for 12000 iterations. As compared to RKE standard k-epsilon(SKE) model takes just 1000 iteratios. Also, I have looked at both the codes i.e. RKE as well as SKE, following differences have been observed:

RKE epsilon and k equations:
------------------------------------------
tmp<fvscalarmatrix> epsEqn
(
fvm::ddt(epsilon_)
+ fvm::div(phi_, epsilon_)
- fvm::laplacian(DepsilonEff(), epsilon_)
==
C1*magS*epsilon_ + boundarySource
- fvm::Sp
(
C2*epsilon_/(k_ + sqrt(nu()*epsilon_)) + boundaryCentral,
epsilon_
)
);

epsEqn().relax();
solve(epsEqn);
bound(epsilon_, epsilon0_);


// Turbulent kinetic energy equation

tmp<fvscalarmatrix> kEqn
(
fvm::ddt(k_)
+ fvm::div(phi_, k_)
- fvm::laplacian(DkEff(), k_)
==
G - fvm::Sp(epsilon_/k_, k_)
);
-------------------------------------------

SKE epsilon and k equations:

tmp<fvscalarmatrix> epsEqn
(
fvm::ddt(epsilon_)
+ fvm::div(phi_, epsilon_)
- fvm::Sp(fvc::div(phi_), epsilon_)
- fvm::laplacian(DepsilonEff(), epsilon_)
==
C1*G*epsilon_/k_ + boundarySource
- fvm::Sp(C2*epsilon_/k_ + boundaryCentral, epsilon_)
);

epsEqn().relax();
solve(epsEqn);
bound(epsilon_, epsilon0_);


// Turbulent kinetic energy equation

tmp<fvscalarmatrix> kEqn
(
fvm::ddt(k_)
+ fvm::div(phi_, k_)
- fvm::Sp(fvc::div(phi_), k_)
- fvm::laplacian(DkEff(), k_)
==
G
- fvm::Sp(epsilon_/k_, k_)
);
----------------------------------------

Why do we have terms "- fvm::Sp(fvc::div(phi_), epsilon_)" and "- fvm::Sp(fvc::div(phi_)", k_) in SKE but not in RKE. I have looked at RNG model also, and these terms are absent there as well.

In the file "realizableKE.H" we have :

---------------------------------------------
tmp<volscalarfield> rCmu
(
const volTensorField& gradU,
const volScalarField& S2,
const volScalarField& magS
);

tmp<volscalarfield> rCmu
(
const volTensorField& gradU
);

--------------------------------------------

Why do we need to define "gradU" two times. Kindly excuse me if I am asking stupid questions. I am new to C++ and OOPS.

"Cmu" in RKE is computed as "rCmu", therefore do we really need to read "Cmu"?

The other constants like "A0", "C2", "alphak" and "alphaEps" are passed correctly.

Regards
GS
  Reply With Quote

Old   July 20, 2005, 05:47
Default The RKE model is the least-wel
  #10
Senior Member
 
Join Date: Mar 2009
Posts: 854
Rep Power: 22
henry is on a distinguished road
The RKE model is the least-well tested but worked very well for the cases I have tried including the backward-facing step.

The fvm::Sp(fvc::div(phi_), epsilon_) and fvm::Sp(fvc::div(phi_), k_) terms are optional. Note that at convergence fvc::div(phi_) = 0 so these terms only have any effect early in the solution procedure while continuity is violated due to incomplete solution of the pressure equation.

> Why do we need to define "gradU" two times

Sorry, I don't understand the question.

> "Cmu" in RKE is computed as "rCmu", therefore do we really need to read "Cmu"?

That depends on wether you want to use Cmu or rCmu in the wall-functions, this issue is not properly addressed in the papers and I opted for Cmu.

Could your convergence problems relate to the choice of outlet boundary condition? What are you currently using?
henry is offline   Reply With Quote

Old   July 20, 2005, 06:06
Default Thanks Henry for your prompt r
  #11
ghanshyam
Guest
 
Posts: n/a
Thanks Henry for your prompt reply.

>Sorry, I don't understand the question.

In the file "realizableKE.H" we have :

---------------------------------------------
tmp<volscalarfield> rCmu
(
const volTensorField& gradU,
const volScalarField& S2,
const volScalarField& magS
);

tmp<volscalarfield> rCmu
(
const volTensorField& gradU
);

--------------------------------------------

In the above I meant why do we need

tmp<volscalarfield> rCmu
(
const volTensorField& gradU
);

Regarding BC I am using outlet boundary condition at the exit.

Regards
GS
  Reply With Quote

Old   July 20, 2005, 06:33
Default Look at the calls to the two r
  #12
Senior Member
 
Join Date: Mar 2009
Posts: 854
Rep Power: 22
henry is on a distinguished road
Look at the calls to the two rCmu functions and what they do and you will see why there are two, one calling the other -- it saves code duplication.

Try using the inletOutlet BC at the outlet and specify (0 0 0) as the inletValue for U and whatever you are using as the inlet values for k and epsilon.
henry is offline   Reply With Quote

Reply


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
URF and convergence in natural convergence Marie-Anne Main CFD Forum 11 September 11, 2009 10:07
convergence vijay FLUENT 6 February 1, 2006 03:04
convergence vijay Main CFD Forum 1 January 30, 2006 13:13
too bad convergence Davoche Main CFD Forum 2 November 20, 2005 05:08
About convergence LQ CFX 3 June 2, 2005 23:43


All times are GMT -4. The time now is 20:35.