The following floating-point exceptions are signalling: IEEE_UNDERFLOW_FLAG IEEE_DENORMAL.
I found this error in my fortran code please if any one know how to resolve it please provide me the solution ASAP.
Thanks in advance.
Amit Singhal
IIT Jodhpur
Thermofluid Engg
An underflow error can classically arise if you have for example a decreasing exponential \exp(-x) where x become too large (that’s easy with a gaussian curve). So you have to look in your code where you have functions that could generate very small values.
If ever your code is using 32 bits reals, passing to 64 bits reals could improve the situation, the limit for normal numbers passing from 10^{-38} to 10^{-308}.
I suggest you take a minute to learn about the proper etiquette and techniques for asking technical questions on public forums. You have not provided us with sufficient information to begin investigating your problem.