CFD Online Discussion Forums

CFD Online Discussion Forums (https://www.cfd-online.com/Forums/)
-   OpenFOAM Running, Solving & CFD (https://www.cfd-online.com/Forums/openfoam-solving/)
-   -   Convergence problem with flow facing a backstep (https://www.cfd-online.com/Forums/openfoam-solving/112005-convergence-problem-flow-facing-backstep.html)

GM_XIII January 19, 2013 17:42

Convergence problem with flow facing a backstep (case files now attached)
 
1 Attachment(s)
I am starting with OpenFoam so this can be a silly question. I have experience with other CFD programs but i decide to start learning OpenFoam.

Problem data: Incompressible airfoil facing a backstep, Steady, I am using the icoFoam solver.

I have convergence problems as the Courant goes up as the residuals.

Feel free to ask for further information and thanks in advance.

msuaeronautics January 21, 2013 23:23

Can we see your output file?

maxmeinicke January 22, 2013 05:10

Hi,

icoFoam is a transient solver. You can identify that under:

<OPENFOAM_DIR>/applications/solvers/incompressible/icoFoam/icoFoam.C line 58 (OF-2.1.x)

fvm::ddt(U) -> transient

So you must not set steadyState ddtSchemes in system/fvSchemes. For example: use full implicit Euler scheme.

Search the following folder for all available ddtSchemes:

<OPENFOAM_DIR>/src/finiteVolume/finiteVolume/ddtSchemes

To identify their name for fvSchemes, have a look into their header files (*.H). Search for the string in TypeName. That's what you can put into fvSchemes.

Example:

EulerDdtScheme.H

->

line 71 (OF-2.1.x):

TypeName("Euler");

->

ddtSchemes
{
default Euler;
}

GM_XIII January 22, 2013 08:02

Thank you, I thought that a transient solver could manage steady cases with that fvShemes, my fault of couse. I would like to do it Steady becouse if i do it transient i need to set a very low time step in order to keep the coutant number low. So, what's the best solver to solve this case as Steady?

maxmeinicke January 22, 2013 09:29

Use simpleFoam. It has the following properties:

- steady state
  • no fvm::ddt in UEqn.H, which means
  • ddt == 0
- incompressible
  • rho == constant, not solving for rho
  • pressure p is not the real pressure in [N/m2], but it is p / rho [m2/s2]
- time step
  • important: it does not matter which deltaT you select; as best you select dT = 1s
  • convergence is reached with relaxation factors in fvSolution

Aadhavan January 22, 2013 10:24

Hi Maxmeinicke,
I have a small silly question,

[ pressure p is not the real pressure in [N/m2], but it is p / rho [m2/s2] ]

according your post, to get the real pressure in [N/m2], what should we do?

how to convert the simpleFoam simulation pressure in to real pressure????

I am bit confused by the unit of (p/rho ---> m2/s2), can you please explain about it?


Thanks,
Aadhavan

GM_XIII January 22, 2013 10:45

Thank you mate, I finally did it :) I haven't realised that you could use a turbulent solver and then specify that the case is laminar. Now it is done, I will upload the case files in case someone could be interested.

maxmeinicke January 22, 2013 13:22

Congratulations to you :)

unit calculation:

compressible:

p = F / A = N / m2 = kg * m / s2 / m2 = kg / m / s2

OpenFOAM notation: 'dimensions [1 -1 -2 0 0 0 0];'

incompressible:

p / rho = F / A / rho = N / m2 / (kg / m3) = kg * m / s2 / m2 / (kg / m3) = m2 / s2

OpenFOAM notation: 'dimensions [0 2 -2 0 0 0 0];'

Have a look into the pressure boundary files in time folder 0 for incompressible and compressible tutorial cases.

unit explanation:

In OpenFOAM basic solvers, 'incompressible' means constant density and 'compressible' means the density varies. So in compressible solvers a density transport equation is solved (rhoEqn). If the density is constant, you can divide all terms in the transport equations by the density. You will find out that the density is removed from all terms except the pressure term and the viscosity term. That is why with compressible and incompressible solvers one must be careful with units.

compressible uses:
  • pressure p [Pa]
  • dynamic viscosity mu (greek letter) [kg / m / s]
incompressible uses:
  • pressure p which is actually p / rho [m2 / s2]
  • kinematic viscosity nu (greek letter) [m2 / s]
Connection between units:

p_compr = p_incompr * rho
mu_compr = nu_incompr * rho

As you can see, the units scale with rho. So if you calculate water, mu is 1000 times larger than nu.

To calculate the real pressure for an incompressible solver, multiply with the density. If I would like to write the real pressure to the timefolders, I would derive a new solver and add a new volScalarField p_real.

If someone knows, how to manage writing the real pressure for incompressible solvers to time folders using functions and without creating a new solver, please let us know.

If you have more questions, please ask.

which OF version do you use?

Aadhavan January 23, 2013 02:47

Hi,
Thanks for your long reply, I am using OF-2.0.1.

small correction your explanation,

pressure p which is actually p / rho [m2 / m2],

this should be (m2/s2).


Thanks,
Aadhavan

maxmeinicke January 23, 2013 05:52

1 Attachment(s)
I've created a new solver simpleFoam2.

It is derived from simpleFoam and outputs the real pressure pReal.

just extract the file and read the README...

santiagomarquezd January 28, 2013 21:54

Hi, this paper is useful

http://www.cimec.org.ar/ojs/index.ph...File/3263/3186

Regards.

Aadhavan January 29, 2013 01:43

Hi Santiag,
Can you please say something about it. I tried to look at it but I am not able.
It seems it is in French or some other language.
is there any English version.


Thanks,
Aadhavan

akidess January 29, 2013 03:16

I opened Santiago's link and got an English PDF.

CFDUser_ March 26, 2014 02:55

Quote:

Originally Posted by GM_XIII (Post 403338)
Thank you mate, I finally did it :) I haven't realised that you could use a turbulent solver and then specify that the case is laminar. Now it is done, I will upload the case files in case someone could be interested.

can you tel me the boundary conditions for this problem.
I also would like to see your result, may be velocity contort is quiet enough. can you post here?

GM_XIII March 27, 2014 03:56

Quote:

Originally Posted by CFDUser_ (Post 482138)
can you tel me the boundary conditions for this problem.
I also would like to see your result, may be velocity contort is quiet enough. can you post here?

It is my mot have uploaded it when i finished it, now it would be hard to find it but if i do i will upload it. By the way, i think i might not change the BC of my initial case, which is uploaded. I. Think i use velocity inlet+ presure outlet (0 pressure).

Regards


All times are GMT -4. The time now is 09:12.