|
[Sponsors] |
twoPhaseEulerFoam - floating point exception (nutb) |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
April 9, 2009, 06:07 |
twoPhaseEulerFoam - floating point exception (nutb)
|
#1 |
New Member
Join Date: Mar 2009
Posts: 28
Rep Power: 17 |
Hi,
I just started with the twoPhaseEulerFoam Solver. I got while "calculating nutb" a floating point exception. I saw that nutb is turbulent kinematic viscosity of phase b. Where could be the problem? Br |
|
April 9, 2009, 11:41 |
|
#2 | |
Member
Juho Peltola
Join Date: Mar 2009
Location: Finland
Posts: 89
Rep Power: 17 |
Quote:
Info<< "Calculating field nutb\n" << endl; volScalarField nutb ( IOobject ( "nutb", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::AUTO_WRITE ), Cmu*sqr(k)/epsilon ); Most floating point exceptions are divide-by-zeros. As you can see the square of the turbulent kinetic energy, k, is divided by epsilon. I guess you have a zero in your epsilon field? You can eliminate the floating point exception by using a small value such as 1e-13 instead. However, in 1.5.x version this problem is eliminated by using: Cmu*sqr(k)/max(epsilon, dimensionedScalar("smallEps",epsilon.dimensions(), 1e-6)) Where the value of epsilon in the denominator is limited to larger than 1e-6 and thus removing the possibility of a floating point exception caused by a zero in the epsilon field. So another option is to update to 1.5.x or to modify the line yourself and recompile the solver. |
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Floating point exception? | Ricky Wong | FLUENT | 19 | March 28, 2020 16:32 |
Error : floating point exception; overflow. | maryam | CFX | 3 | May 18, 2010 08:44 |
Floating Point Exception?? | Alex | FLUENT | 2 | April 21, 2009 02:29 |
CFX error, Floating point exception | Riyaz | Main CFD Forum | 0 | November 14, 2008 07:30 |
[Gmsh] Gmsh and samplesurface | touf | OpenFOAM Meshing & Mesh Conversion | 2 | December 10, 2007 03:27 |