Faddeeva Package

From AbInitio

Revision as of 05:22, 31 October 2012; Stevenj (Talk | contribs)
(diff) ←Older revision | Current revision | Newer revision→ (diff)
Jump to: navigation, search

Contents

Faddeeva / complex error function

Steven G. Johnson has written free/open-source C++ code (with wrappers for other languages) to compute the scaled complex error function w(z) = ez2erfc(−iz), also called the Faddeeva function (and also the plasma dispersion function), for arbitrary complex arguments z to a given accuracy. Download the source code from:

Given the Faddeeva function, one can easily compute Voigt functions, the Dawson function, and similar related functions. Our implementation includes special-case optimizations for purely real or imaginary z, making its performance competitive with specialized implementations of (e.g.) the Dawson function, erfcx, and erfi.

Usage

To use the code, add the following declaration to your C++ source (or header file):

#include <complex>
extern std::complex<double> Faddeeva_w(std::complex<double> z, double relerr=0);

The function Faddeeva_w(z, relerr) computes w(z) to a desired relative error relerr.

Omitting the relerr argument, or passing relerr=0 (or any relerr less than machine precision ε≈10−16), corresponds to requesting machine precision, and in practice a relative error < 10−13 is usually achieved. Specifying a larger value of relerr may improve performance (at the expense of accuracy).

You should also compile Faddeeva_w.cc and link it with your program, of course.

In terms of w(z), some other important functions are:

\mathrm{erfcx}(z) = e^{z^2} \mathrm{erfc}(z) = w(iz) (scaled complementary error function)
\mathrm{erfc}(z) = e^{-z^2} w(iz) = \begin{cases} e^{-z^2} w(iz) & \mathrm{Re}\,z \geq 0 \\ 2 - e^{-z^2} w(-iz)) & \mathrm{Re}\,z < 0  \end{cases} (complementary error function)
\mathrm{erf}(z) = 1 - \mathrm{erfc}(z) = \begin{cases} 1 - e^{-z^2} w(iz) & \mathrm{Re}\,z \geq 0 \\ e^{-z^2} w(-iz) - 1 & \mathrm{Re}\,z < 0  \end{cases} (error function)
\mathrm{erfi}(z) = -i\mathrm{erf}(iz) =  -i[e^{z^2} w(z) - 1]; for real x, \mathrm{erfi}(x) = e^{x^2} \mathrm{Im}[w(x)] = \frac{\mathrm{Im}[w(x)]}{\mathrm{Re}[w(x)]} (imaginary error function)
F(z) = \frac{i\sqrt{\pi}}{2} \left[ e^{-z^2} - w(z) \right]; for real x, F(x) = \frac{\sqrt{\pi}}{2}\mathrm{Im}[w(x)] (Dawson function)

Note that in the case of erf and erfc, we suggest different equations for positive and negative Re(z), in order to avoid numerical problems arising from multiplying exponentially large and small quantities. For erfi and F, there are simplifications that occur for real x as noted. Furthermore, if you want to compute e.g. erfi or the Dawson function F for real z=x, you can obtain the imaginary part of w(x) directly without computing the real part, by calling:

extern double ImFaddeeva_w(double x);

which computes Im[w(x)] efficiently. Note that Re[w(x)] is simply exp(−x2) for real x.

Wrappers: Matlab, GNU Octave, and Python

Wrappers are available for this function in other languages.

  • Matlab (also available here): A function Faddeeva_w(z, relerr), where the arguments have the same meaning as above (the relerr argument is optional) can be downloaded from Faddeeva_w_mex.cc (along with the help file Faddeeva_w.m. Compile it into an octave plugin with:
mex -output Faddeeva_w -O Faddeeva_w_mex.cc Faddeeva_w.cc
  • GNU Octave: A function Faddeeva_w(z, relerr), where the arguments have the same meaning as above (the relerr argument is optional) can be downloaded from Faddeeva_w_oct.cc. Compile it into a MEX file with:
mkoctfile -DMPICH_SKIP_MPICXX=1 -DOMPI_SKIP_MPICXX=1 -s -o Faddeeva_w.oct Faddeeva_w_oct.cc Faddeeva_w.cc
  • Python: Our code is used to provide scipy.special.wofz in SciPy starting in version 0.12.0 (see here).

Algorithm

This implementation uses a combination of different algorithms. For sufficiently large |z|, we use a continued-fraction expansion for w(z) similar to those described in

Unlike those papers, however, we switch to a completely different algorithm for smaller |z|:

(I initially used this algorithm for all z, but the continued-fraction expansion turned out to be faster for larger |z|. On the other hand, Algorithm 916 is competitive or faster for smaller |z|, and appears to be significantly more accurate than the Poppe & Wijers code in some regions, e.g. in the vicinity of |z|=1 [although comparison with other compilers suggests that this may be a problem specific to gfortran]. Algorithm 916 also has better relative accuracy in Re[z] for some regions near the real-z axis. You can switch back to using Algorithm 916 for all z by changing USE_CONTINUED_FRACTION to 0 in the code.)

Note that this is SGJ's independent re-implementation of these algorithms, based on the descriptions in the papers only. In particular, we did not refer to the authors' Fortran or Matlab implementations (respectively), which are under restrictive "semifree" ACM copyright terms and are therefore unusable in free/open-source software.

Algorithm 916 requires an external complementary error function erfc(x) function for real arguments x to be supplied as a subroutine. More precisely, it requires the scaled function erfcx(x) = ex2erfc(x). Here, we use an erfcx routine written by SGJ that uses a combination of two algorithms: a continued-fraction expansion for large x and a lookup table of Chebyshev polynomials for small x. (I initially used an erfcx function derived from the DERFC routine in SLATEC, modified by SGJ to compute erfcx instead of erfc, by the new erfcx routine is much faster, and also seems to be faster than the calerf rational-Chebyshev code by W. J. Cody.)

Similarly, we also implement special-case code for real-z, where the imaginary part of w is Dawson's integral. Like erfcx, this is also computed by a continued-fraction expansion for large |x|, a lookup table of Chebyshev polynomials for small |x|, and finally a Taylor expansion for very small |x|. (This seems to be faster than the dawsn function in the Cephes library, and is substantially faster than the gsl_sf_dawson function in the GNU Scientific Library.)

Test program

To test the code, a small test program is included at the end of Faddeeva_w.cc which tests w(z) against several known results (from Wolfram Alpha) and prints the relative errors obtained. To compile the test program, #define FADDEEVA_W_TEST in the file (or compile with -DFADDEEVA_W_TEST on Unix) and compile Faddeeva_w.cc. The resulting program prints SUCCESS at the end of its output if the errors were acceptable.

License

The software is distributed under the "MIT License", a simple permissive free/open-source license:

Copyright © 2012 Massachusetts Institute of Technology
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Personal tools