nmie-precision.hpp 3.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #ifndef SRC_NMIE_PRECISION_H_
  2. #define SRC_NMIE_PRECISION_H_
  3. //**********************************************************************************//
  4. // Copyright (C) 2009-2015 Ovidio Pena <ovidio@bytesfall.com> //
  5. // Copyright (C) 2013-2015 Konstantin Ladutenko <kostyfisik@gmail.com> //
  6. // //
  7. // This file is part of scattnlay //
  8. // //
  9. // This program is free software: you can redistribute it and/or modify //
  10. // it under the terms of the GNU General Public License as published by //
  11. // the Free Software Foundation, either version 3 of the License, or //
  12. // (at your option) any later version. //
  13. // //
  14. // This program is distributed in the hope that it will be useful, //
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of //
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
  17. // GNU General Public License for more details. //
  18. // //
  19. // The only additional remark is that we expect that all publications //
  20. // describing work using this software, or all commercial products //
  21. // using it, cite the following reference: //
  22. // [1] O. Pena and U. Pal, "Scattering of electromagnetic radiation by //
  23. // a multilayered sphere," Computer Physics Communications, //
  24. // vol. 180, Nov. 2009, pp. 2348-2354. //
  25. // //
  26. // You should have received a copy of the GNU General Public License //
  27. // along with this program. If not, see <http://www.gnu.org/licenses/>. //
  28. //**********************************************************************************//
  29. //**********************************************************************************//
  30. // This class implements the algorithm for a multilayered sphere described by: //
  31. // [1] W. Yang, "Improved recursive algorithm for light scattering by a //
  32. // multilayered sphere,” Applied Optics, vol. 42, Mar. 2003, pp. 1710-1720. //
  33. // //
  34. // You can find the description of all the used equations in: //
  35. // [2] O. Pena and U. Pal, "Scattering of electromagnetic radiation by //
  36. // a multilayered sphere," Computer Physics Communications, //
  37. // vol. 180, Nov. 2009, pp. 2348-2354. //
  38. // //
  39. // Hereinafter all equations numbers refer to [2] //
  40. //**********************************************************************************//
  41. #ifdef MULTI_PRECISION
  42. #include <boost/multiprecision/number.hpp>
  43. #include <boost/multiprecision/cpp_bin_float.hpp>
  44. #endif // MULTI_PRECISION
  45. namespace nmie {
  46. #ifdef MULTI_PRECISION
  47. namespace nmm = boost::multiprecision;
  48. typedef nmm::number<nmm::cpp_bin_float<MULTI_PRECISION> > FloatType;
  49. #else
  50. namespace nmm = std;
  51. typedef double FloatType;
  52. //typedef float FloatType;
  53. #endif // MULTI_PRECISION
  54. } // end of namespace nmie
  55. #endif // SRC_NMIE_PRECISION_H_