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

No convergence after mesh refinement

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   September 23, 2014, 16:33
Question No convergence after mesh refinement
  #1
New Member
 
Deutschland
Join Date: Sep 2014
Posts: 8
Rep Power: 11
Andreas: is on a distinguished road
Hi everyone,

I am using icoFoam in OF2.3 to calculate laminar flow in a 3d diffusor.
Everything works fine for a certain mesh resolution. But as soon as I refine the mesh, the calculation of p does not converge. The solver aborts calculations after 1001 Iterations.

I already tried reducing deltaT.
For the refinement I used refineMesh and also ICEM CFD.

Some specs of the case:
Re ~900
d_in =3mm
d_out ~30mm
2*alpha ~8°
u_in ~3m/s (uniform)
nu =35.4e-6

Does someone have an idea on how to solve this problem?

thanks
Andreas
Andreas: is offline   Reply With Quote

Old   September 24, 2014, 03:43
Default
  #2
Member
 
Florian Ries
Join Date: Feb 2014
Location: Darmstadt, Germany
Posts: 88
Rep Power: 12
itchy is on a distinguished road
Hi Andreas,

post your case and I can have a look. Without the case files, there is no way to find the problem.

kind regards
Florian
itchy is offline   Reply With Quote

Old   September 24, 2014, 04:03
Default
  #3
New Member
 
Deutschland
Join Date: Sep 2014
Posts: 8
Rep Power: 11
Andreas: is on a distinguished road
Hi Florian,

i attached all files that I think contain relevant information.
If something is missing let me know.

thanks in advance

Andreas
Attached Files
File Type: txt controlDict.txt (1.2 KB, 2 views)
File Type: txt decomposeParDict.txt (1.2 KB, 1 views)
File Type: txt p.txt (1.1 KB, 2 views)
File Type: txt U.txt (1.1 KB, 3 views)
File Type: txt transportProperties.txt (921 Bytes, 2 views)
Andreas: is offline   Reply With Quote

Old   September 24, 2014, 04:10
Default
  #4
New Member
 
Deutschland
Join Date: Sep 2014
Posts: 8
Rep Power: 11
Andreas: is on a distinguished road
Are fvSchemes, fvSolution and checkmesh helpful?
Attached Files
File Type: txt fvSchemes.txt (1.2 KB, 2 views)
File Type: txt fvSolution.txt (1.2 KB, 5 views)
File Type: txt checkMesh.txt (2.8 KB, 1 views)
Andreas: is offline   Reply With Quote

Old   September 24, 2014, 04:19
Default
  #5
Member
 
Florian Ries
Join Date: Feb 2014
Location: Darmstadt, Germany
Posts: 88
Rep Power: 12
itchy is on a distinguished road
Hi,

add at the end of your controlDict:

adjustTimeStep yes;

maxCo 0.3;

I am not sure if icoFaom can handle this.

There is smth wrong in U chang it to:
OUT
{
type zeroGradient;
}

Why you use scotch for decompose??? I prefer simple:

numberOfSubdomains 16;

method simple;

simpleCoeffs
{
n ( 2 2 4 );
delta 0.001;
}

The rest is ok.

I willcheck now the other files
itchy is offline   Reply With Quote

Old   September 24, 2014, 04:31
Default
  #6
New Member
 
Deutschland
Join Date: Sep 2014
Posts: 8
Rep Power: 11
Andreas: is on a distinguished road
Hi Florian,

the maxCo is always below 1. Do you think it might help if its below 0.3? And why is that?

I think icoFoam can't handle adjustTimeStep. I have a modified pisoFoam solver that can run with adjustTimeStep. I already tried running the case with this solver and turbulence switched off. The results are similar.

I will no try to thange my U file.

And on the topic of decompose, to be honest, I didn't have patience to understand how to decompose in a good way, so i picked the first method that worked without further specification.
Andreas: is offline   Reply With Quote

Old   September 24, 2014, 04:33
Default
  #7
Member
 
Florian Ries
Join Date: Feb 2014
Location: Darmstadt, Germany
Posts: 88
Rep Power: 12
itchy is on a distinguished road
Hi,

you have a lot of cells for a laminar case. Why do you need so many cells??

fvSchemes change this:

divSchemes
{
default none;
div(phi,U) Gauss linear;
}

find the new fvSoloution

can you give me your boundary file in /constant/polyMesh

kind regards
Florian
Attached Files
File Type: txt fvSolution.txt (1.5 KB, 2 views)
itchy is offline   Reply With Quote

Old   September 24, 2014, 04:42
Default
  #8
Member
 
Florian Ries
Join Date: Feb 2014
Location: Darmstadt, Germany
Posts: 88
Rep Power: 12
itchy is on a distinguished road
You don't need maxCo 0.3. You can alos choose 0.9 smth like this. But I would control this.

You can also choose backward for your ddtSchemes:

ddtSchemes
{
default backward;
}

With this you can handle higer Co-numbers.

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

decompose with simple is very easy to understand:

simpleCoeffs
{
n ( 2 2 4 );
delta 0.001;
}

means that you divide your domain in 2*2*4 subdomains. 2 in x, 2 in y and 4 in z. But that depands on your case. With simple you cannot do anything wrong. I do not know scotch.

In your U file for OUT you use zeroGradient with a value. In my opinion this makes no sense because it is zeroGradient and not fixedValue.

can you give me your boundary file?? Because the most things that can go wrong is in this file (and off course bc)

kind regards
Florian
itchy is offline   Reply With Quote

Old   September 24, 2014, 04:43
Default
  #9
New Member
 
Deutschland
Join Date: Sep 2014
Posts: 8
Rep Power: 11
Andreas: is on a distinguished road
Here is the boundary file.

The reason why I use so many cells:
First i set up the case in turbulence modeling.
The result was a flow separation in the diffusor, as expected.
Then someone mentioned, that at at Re=900 I should use a laminar solver to prevent mistakes by the turbulence model.
So i set up the case in icoFoam.
But in that case the flow wasn't attached to the wall at all. It just went right through the diffusor to the outflow.
We figured it might be due to low resolution.

But maybe that isn't the problem at all...
Attached Files
File Type: txt boundary.txt (1.3 KB, 8 views)
Andreas: is offline   Reply With Quote

Old   September 24, 2014, 04:46
Default
  #10
Member
 
Florian Ries
Join Date: Feb 2014
Location: Darmstadt, Germany
Posts: 88
Rep Power: 12
itchy is on a distinguished road
ok I thing I have it. It is in your boundary file
Inlet and outlet is a patch and not a wall.
INL
{
type patch;
nFaces 5824;
startFace 10757376;
}
OUT
{
type patch;
nFaces 5824;
startFace 10763200;
}

Pherhaps refineMesh have change this.

Try this.

But also change the other things, especially the decompose method.
itchy is offline   Reply With Quote

Old   September 24, 2014, 04:48
Default
  #11
New Member
 
Deutschland
Join Date: Sep 2014
Posts: 8
Rep Power: 11
Andreas: is on a distinguished road
Quote:
Originally Posted by itchy View Post

In your U file for OUT you use zeroGradient with a value. In my opinion this makes no sense because it is zeroGradient and not fixedValue.
That is correct. The value in combination with zeroGradient is a leftover from the tutorial files i copied. I think the value is ignored as soon as zeroGradient is chosen. I never had a problem with that in other cases.

Andreas
Andreas: is offline   Reply With Quote

Old   September 24, 2014, 04:51
Default
  #12
Member
 
Florian Ries
Join Date: Feb 2014
Location: Darmstadt, Germany
Posts: 88
Rep Power: 12
itchy is on a distinguished road
Hi,

you can also use pisoFoam for laminar flow. The only thing you have to do is change your turbulenceProperties file:

simulationType laminar;

That's all.
Then your turbulence->divDevReff(U) use only laminar viscosity. So there is no difference.

kind regard
Florian
itchy is offline   Reply With Quote

Old   September 24, 2014, 04:51
Default
  #13
New Member
 
Deutschland
Join Date: Sep 2014
Posts: 8
Rep Power: 11
Andreas: is on a distinguished road
Thank you so far.

I will change everything and see what happens.

Andreas
Andreas: is offline   Reply With Quote

Old   September 24, 2014, 04:54
Default
  #14
Member
 
Florian Ries
Join Date: Feb 2014
Location: Darmstadt, Germany
Posts: 88
Rep Power: 12
itchy is on a distinguished road
Ok. can be true, that OF ignores the value (0 0 0) for zeroGradient. I would delete it.
itchy is offline   Reply With Quote

Old   September 24, 2014, 06:11
Default
  #15
New Member
 
Deutschland
Join Date: Sep 2014
Posts: 8
Rep Power: 11
Andreas: is on a distinguished road
So I tried everything suggested.
Still 1001 Iterations on p.

Maybe lunch will bring new ideas.

Thanks anyway.

Regards
Andreas
Andreas: is offline   Reply With Quote

Reply

Tags
convergence, diffusor, icofoam, openfoam


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
how to set periodic boundary conditions Ganesh FLUENT 15 November 18, 2020 06:09
[snappyHexMesh] snappyHexMesh & Mesh around a missile sasanghomi OpenFOAM Meshing & Mesh Conversion 2 October 15, 2014 19:54
Mesh gets out of sync during parallel 2D adaptive mesh refinement pjohannes183 OpenFOAM Programming & Development 0 November 14, 2013 04:31
[Gmsh] 2D Mesh Generation Tutorial for GMSH aeroslacker OpenFOAM Meshing & Mesh Conversion 12 January 19, 2012 03:52
fluent add additional zones for the mesh file SSL FLUENT 2 January 26, 2008 11:55


All times are GMT -4. The time now is 16:27.