Author Topic: Conjugate heat transfer problem in Fluent 12. Energy residuals are high.  (Read 7711 times)

Offline infocfd

  • Newbie
  • *
  • Posts: 45
  • Reputation: +0/-0
  • Searching for solution
    • View Profile
Advertisement
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.

Offline william

  • Full Member
  • ***
  • Posts: 159
  • Reputation: +15/-0
  • Know it, share it.
    • View Profile
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.