Post reply

Note: this post will not display until it's been approved by a moderator.

Name:
Email:
Subject:
Message icon:

Verification:
Type the letters shown in the picture
Listen to the letters / Request another image

Type the letters shown in the picture:

shortcuts: hit alt+s to submit/post or alt+p to preview


Topic Summary

Posted by: william
« on: February 06, 2012, 06:36:03 PM »

Possible causes could be:
=========
1. Poor mesh quality: high size change, and/or high skewness, and/or coarse mesh
2. high jump in thermal conductivity
3. invalid boundary conditions
4. improper mesh scaling

To resolve this you need to:
=========
1. make sure mesh is scaled properly. Go to Mesh --> Scale

2. double-check model setup and boundary conditions

3. reduce explict-relaxation, using the following 3 lines:

(rpsetvar 'temperature/explicit-relax? #f)
(rpsetvar 'explicit-relaxation? #t)
(rpsetvar 'temperature/explicit-relax 0.1)

By default, explicit-relax is set to 1.0.

4. Keep implicit underrelaxation to 1.0, by using the following line:

(rpsetvar 'temperature/relax 1)

It can also be set in the GUI.

5. Use alternative wall formulation, which can be activated using the folloiwng TUI command:

/solve set expert , yes , , ,

6. Ignore secondary gradient on all the cells, but shell conduction walls (if you have them), by using the following rpvar:

(rpsetvar 'temperature/secondary-gradient? #f)

By default, this is #t (true). To obtain the value, type:

(rpgetvar 'temperature/secondary-gradient?)

which will return either #t or #f.

Warning: This may bring some measureable inaccuracy, depending on how skewed the cells are at the wall and how high is the magnitude of the wall heat flux.

7. If you have turned on shell conduction in any of the walls, ignore secondary gradient in shell conduction zones only using the following command:

(rpsetvar 'temperature/shell-secondary-gradient? #f)

This does not cause measurable inaccuracy.
Posted by: infocfd
« on: February 06, 2012, 06:34:36 PM »

Hello,

I have a conjugate heat transfer problem in Fluent 12.0. The energy residuals do not converge. What could be the cause and how do I get it converged?

Thank you.