CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

Single or double precision

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   March 25, 2007, 17:51
Default Single or double precision
  #1
Jonas Larsson
Guest
 
Posts: n/a
I was writing some numerical advice in the CFD-Wiki Best Practise Guidelines for Turbomachinery CFD.

From my experience, mainly on pure aero simulations (not with combustion, acoustics etc.), you only need to do use double precision if you have very well resolved boundary layers (y plus below 1). For inviscid euler simulations and coarse wall-function simulations it is most often sufficient with a single precision solver. Anyone disagree?

Is this the case also for more special simulations involving combustion, acoustics, etc. ? Or should the advice about single or double precision be enhanced with details about different types of simulations?
  Reply With Quote

Old   March 25, 2007, 20:18
Default Re: Single or double precision
  #2
Hrvoje Jasak
Guest
 
Posts: n/a
There is a lot of theories about this. The main issue is whether you can afford the memory for double precision or not - memory was an issue 10-15 years ago but now frankly I don't care.

Regarding the actual accuracy, in most external aerodynamics simulations you are OK with single precision. Ideally, the linear equation solver should be written in double precision (but not necessarily the coefficients). One needs to keep in mind that 1e-6 as a convergence criterion for a single precision would be really really tight.

However, as you move towards more complex physics, single precision will bite you. Examples include free surface (density ratio), combustion, spray, in-cylinder simulation (think mesh motion at time-step size of 0.01 deg crank angle) etc.

In any case, my philosophy (when running OpenFOAM) is to use double precision and not worry about round-off errors OR run single precision and compensate by engaging the brain

Hrv
  Reply With Quote

Old   March 26, 2007, 03:38
Default Re: Single or double precision
  #3
Jonas Larsson
Guest
 
Posts: n/a
That was the feeling I had - when running physics that create strong gradients it is often good to run in double precision. I added a bit of your thoughts to the best practise guidelines for turbomachinery CFD that I was working on. You can see the round-off section here:

http://www.cfd-online.com/Wiki/Best_...und-off_errors

If you have any other suggestions please let me know.
  Reply With Quote

Old   March 26, 2007, 05:23
Default Re: Single or double precision
  #4
Praveen. C
Guest
 
Posts: n/a
I always use double precision. Memory is not a constraint now. I do not know whether CPU times are different for single versus double precision. If the code is single precision, and in future you feel the need for double precision, then you will have some work to do to convert the code, especially with fortran, considering even all math functions come in two flavours. Hence I prefer to use double precision all the time.
  Reply With Quote

Old   March 26, 2007, 07:42
Default Re: Single or double precision
  #5
George
Guest
 
Posts: n/a
I prefer to use double precision, because some variables, like temperature, pressure and turbulent dissipation take quite large values (for example temperature=400 K, pressure= 150000 Pa, epsilon=10000 m^2/s^3), and especially for pressure the "lost" digits with single precision are important.
  Reply With Quote

Old   March 26, 2007, 08:17
Default Re: Single or double precision
  #6
Jonas Larsson
Guest
 
Posts: n/a
Yes, that is why codes often do not use the real pressure but instead use a gauge pressure, which is the pressure difference compared to the ambient pressure. That way you avoid excessive round-off errors when computing pressure differences etc.
  Reply With Quote

Old   March 26, 2007, 08:22
Default Re: Single or double precision
  #7
Jonas Larsson
Guest
 
Posts: n/a
Memory is always a constraint I still haven't used a computer which I haven't used up all the memory on. Many years ago CPU times used to be almost double for double precision. However, this is not the case for modern CPUs. Usually double precision is something like 30% slower I would guess, but I haven't really checked it in detail lately. Anyone have any recent details on the speed and memory difference when running CFD software in single or double precision? With the explosive growth of hardware and compilers these things change.

With a good fortran compiler it is usually very trivial to switch to double precision. With the compiler I used a long time ago all you had to do was to add a -r8 switch when you compiled your code.
  Reply With Quote

Old   March 26, 2007, 09:34
Default Re: Single or double precision
  #8
George
Guest
 
Posts: n/a
But in some applications (like in-cylinder simulation) pressure increases up to 15 bar during compression (15.E+5 Pa) and the difference compared to the ambient pressure is 14.E+5 Pa, again a very large number for single precision.
  Reply With Quote

Old   March 26, 2007, 09:53
Default Re: Single or double precision
  #9
andy
Guest
 
Posts: n/a
Personally, I tend to use single precision most of the time for reasons of efficiency but writing your code so that you can change one parameter, recompile and run in double precision is important for checking that roundoff really is limiting the convergence and not, for example, some boundary condition issue. It is also one of the standard checks to gain information when you observe something you do not understand in the behaviour of your code.

To expand on the point of Hrvoje, engaging the brain and writing code so that it can run in single precision when, for example, you are running a compressible code at low Mach number, teaches you a fair amount about good ways to normalise, express and difference terms.

I would suggest that your advice should be that the wise researcher uses both single and double precision.
  Reply With Quote

Old   March 26, 2007, 11:45
Default Re: Single or double precision
  #10
Jonas Larsson
Guest
 
Posts: n/a
Sounds like an application where double precision is not a bad idea.
  Reply With Quote

Old   March 26, 2007, 12:30
Default Re: Single or double precision
  #11
Steve
Guest
 
Posts: n/a
I wouldn't call 15.E+5 a large number. Large compared with acoustic perturbations perhaps, but not compared with ambient pressure numbers. I've never found the need for DP for state variables. Cumulative crank angles and time yes, stiff chemical equations yes, state variables no.
  Reply With Quote

Old   March 26, 2007, 13:15
Default Re: Single or double precision
  #12
Praveen. C
Guest
 
Posts: n/a
With g77/gfortran, there does not seem to be any way to switch variables during compilation. Aren't all computations actually done with the same precision in the floating point registers ? It would seem that the difference would arise due to the overhead of moving data into and out of registers, which may be smaller for single precision, and also better cache utilization ??? Of course this may be significant.
  Reply With Quote

Old   March 26, 2007, 13:35
Default Re: Single or double precision
  #13
rt
Guest
 
Posts: n/a
In my experience on AMD64, there is not sensible difference between 4-byte and 8-byte data word,

Also i mention that (i am not certain) when i read something about programming for AMD64 cpu, they adviced to use 4-byte data word alwase, and using smaller type (especially 1-byte) not only increase performance but also decrease executation speed (consider data off-set,...)
  Reply With Quote

Old   March 26, 2007, 13:36
Default Re: Single or double precision
  #14
rt
Guest
 
Posts: n/a
>they adviced to use 4-byte data word alwase an error, must be corrected to: they adviced to use 8-byte data word alwase
  Reply With Quote

Old   March 26, 2007, 15:10
Default Re: Single or double precision
  #15
Bak_Flow
Guest
 
Posts: n/a
Hi Jonas,

for turbomachinery, especially later stages of an axial compressor the geometry and mesh should be generated in double precision because the whole problem is offset from the axis of rotation by the hub radius.

As Hrv points out the coefficients should be ok single precision. BUT to get them you need difference of dimensions. Say you are doing a tip gap which is the order of 0.01[in] which is divided into 10 cells...that is NOT fine today! This gives dimensions on the order of 0.001! Then an offset of 10[in] starts to put you in real trouble.

Unfortunatly many meshes are still not written out in double precision today.

I always run in double precision today as well.

Regards,

Bak_Flow
  Reply With Quote

Old   March 26, 2007, 23:15
Default Re: Single or double precision
  #16
desA
Guest
 
Posts: n/a
I agree with Hrvoje's comments. Using double-precision is my norm - in fact, I'd go for anything beyond that, if it were available.

Then, at least, we could silence the eternal - it is all due to 'numeric error' - wherever that bogey may come from.

desA

  Reply With Quote

Old   June 20, 2017, 06:53
Default double precision and single precision
  #17
New Member
 
sowmi
Join Date: Mar 2017
Posts: 14
Rep Power: 9
Sowmi is on a distinguished road
hi all,
I am using double precision in CFD Fluent for my problem having temperature limits from 300 to 30,000 K. it would be grateful if i get clear idea about single precision and double precision.In my problem if i change double precision to single precision there is difference in result.i want to know the reason for the difference and also i want to confirm whether it is because of round-off error.

Thanks in advance..
Sowmi is offline   Reply With Quote

Reply


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
Continuing User Defined Real Gas Model issues aeroman FLUENT 6 April 8, 2016 03:34
Parallel User Defined Real Gas Model aeroman FLUENT 4 July 1, 2015 06:09
Missing math.h header Travis FLUENT 4 January 15, 2009 11:48
what's wrong about my code for 2d burgers equation morxio Main CFD Forum 3 April 27, 2007 10:38
REAL GAS UDF brian FLUENT 6 September 11, 2006 08:23


All times are GMT -4. The time now is 08:46.