nmie.cc 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324
  1. //**********************************************************************************//
  2. // Copyright (C) 2009-2015 Ovidio Pena <ovidio@bytesfall.com> //
  3. // Copyright (C) 2013-2015 Konstantin Ladutenko <kostyfisik@gmail.com> //
  4. // //
  5. // This file is part of scattnlay //
  6. // //
  7. // This program is free software: you can redistribute it and/or modify //
  8. // it under the terms of the GNU General Public License as published by //
  9. // the Free Software Foundation, either version 3 of the License, or //
  10. // (at your option) any later version. //
  11. // //
  12. // This program is distributed in the hope that it will be useful, //
  13. // but WITHOUT ANY WARRANTY; without even the implied warranty of //
  14. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
  15. // GNU General Public License for more details. //
  16. // //
  17. // The only additional remark is that we expect that all publications //
  18. // describing work using this software, or all commercial products //
  19. // using it, cite the following reference: //
  20. // [1] O. Pena and U. Pal, "Scattering of electromagnetic radiation by //
  21. // a multilayered sphere," Computer Physics Communications, //
  22. // vol. 180, Nov. 2009, pp. 2348-2354. //
  23. // //
  24. // You should have received a copy of the GNU General Public License //
  25. // along with this program. If not, see <http://www.gnu.org/licenses/>. //
  26. //**********************************************************************************//
  27. //**********************************************************************************//
  28. // This class implements the algorithm for a multilayered sphere described by: //
  29. // [1] W. Yang, "Improved recursive algorithm for light scattering by a //
  30. // multilayered sphere,” Applied Optics, vol. 42, Mar. 2003, pp. 1710-1720. //
  31. // //
  32. // You can find the description of all the used equations in: //
  33. // [2] O. Pena and U. Pal, "Scattering of electromagnetic radiation by //
  34. // a multilayered sphere," Computer Physics Communications, //
  35. // vol. 180, Nov. 2009, pp. 2348-2354. //
  36. // //
  37. // Hereinafter all equations numbers refer to [2] //
  38. //**********************************************************************************//
  39. #include "nmie.hpp"
  40. #include "nmie-impl.hpp"
  41. #include "nmie-precision.hpp"
  42. #include <array>
  43. #include <algorithm>
  44. #include <cstdio>
  45. #include <cstdlib>
  46. #include <stdexcept>
  47. #include <iostream>
  48. #include <iomanip>
  49. #include <vector>
  50. namespace nmie {
  51. //**********************************************************************************//
  52. // This function emulates a C call to calculate the scattering coefficients //
  53. // required to calculate both the near- and far-field parameters. //
  54. // //
  55. // Input parameters: //
  56. // L: Number of layers //
  57. // pl: Index of PEC layer. If there is none just send -1 //
  58. // x: Array containing the size parameters of the layers [0..L-1] //
  59. // m: Array containing the relative refractive indexes of the layers [0..L-1] //
  60. // nmax: Maximum number of multipolar expansion terms to be used for the //
  61. // calculations. Only use it if you know what you are doing, otherwise //
  62. // set this parameter to -1 and the function will calculate it. //
  63. // //
  64. // Output parameters: //
  65. // an, bn: Complex scattering amplitudes //
  66. // //
  67. // Return value: //
  68. // Number of multipolar expansion terms used for the calculations //
  69. //**********************************************************************************//
  70. int ScattCoeffs(const unsigned int L, const int pl, std::vector<double>& x, std::vector<std::complex<double> >& m, const int nmax, std::vector<std::complex<double> >& an, std::vector<std::complex<double> >& bn) {
  71. if (x.size() != L || m.size() != L)
  72. throw std::invalid_argument("Declared number of layers do not fit x and m!");
  73. try {
  74. MultiLayerMie<FloatType> ml_mie;
  75. ml_mie.SetLayersSize(ConvertVector<FloatType>(x));
  76. ml_mie.SetLayersIndex(ConvertComplexVector<FloatType>(m));
  77. ml_mie.SetPECLayer(pl);
  78. ml_mie.SetMaxTerms(nmax);
  79. ml_mie.calcScattCoeffs();
  80. an = ConvertComplexVector<double>(ml_mie.GetAn());
  81. bn = ConvertComplexVector<double>(ml_mie.GetBn());
  82. return ml_mie.GetMaxTerms();
  83. } catch(const std::invalid_argument& ia) {
  84. // Will catch if ml_mie fails or other errors.
  85. std::cerr << "Invalid argument: " << ia.what() << std::endl;
  86. throw std::invalid_argument(ia);
  87. return -1;
  88. }
  89. return 0;
  90. }
  91. //**********************************************************************************//
  92. // This function emulates a C call to calculate the actual scattering parameters //
  93. // and amplitudes. //
  94. // //
  95. // Input parameters: //
  96. // L: Number of layers //
  97. // pl: Index of PEC layer. If there is none just send -1 //
  98. // x: Array containing the size parameters of the layers [0..L-1] //
  99. // m: Array containing the relative refractive indexes of the layers [0..L-1] //
  100. // nTheta: Number of scattering angles //
  101. // Theta: Array containing all the scattering angles where the scattering //
  102. // amplitudes will be calculated //
  103. // nmax: Maximum number of multipolar expansion terms to be used for the //
  104. // calculations. Only use it if you know what you are doing, otherwise //
  105. // set this parameter to -1 and the function will calculate it //
  106. // //
  107. // Output parameters: //
  108. // Qext: Efficiency factor for extinction //
  109. // Qsca: Efficiency factor for scattering //
  110. // Qabs: Efficiency factor for absorption (Qabs = Qext - Qsca) //
  111. // Qbk: Efficiency factor for backscattering //
  112. // Qpr: Efficiency factor for the radiation pressure //
  113. // g: Asymmetry factor (g = (Qext-Qpr)/Qsca) //
  114. // Albedo: Single scattering albedo (Albedo = Qsca/Qext) //
  115. // S1, S2: Complex scattering amplitudes //
  116. // //
  117. // Return value: //
  118. // Number of multipolar expansion terms used for the calculations //
  119. //**********************************************************************************//
  120. int nMie(const unsigned int L, const int pl, std::vector<double>& x, std::vector<std::complex<double> >& m, const unsigned int nTheta, std::vector<double>& Theta, const int nmax, double *Qext, double *Qsca, double *Qabs, double *Qbk, double *Qpr, double *g, double *Albedo, std::vector<std::complex<double> >& S1, std::vector<std::complex<double> >& S2) {
  121. if (x.size() != L || m.size() != L)
  122. throw std::invalid_argument("Declared number of layers do not fit x and m!");
  123. if (Theta.size() != nTheta)
  124. throw std::invalid_argument("Declared number of sample for Theta is not correct!");
  125. try {
  126. MultiLayerMie<FloatType> ml_mie;
  127. ml_mie.SetLayersSize(ConvertVector<FloatType>(x));
  128. ml_mie.SetLayersIndex(ConvertComplexVector<FloatType>(m));
  129. ml_mie.SetAngles(ConvertVector<FloatType>(Theta));
  130. ml_mie.SetPECLayer(pl);
  131. ml_mie.SetMaxTerms(nmax);
  132. ml_mie.RunMieCalculation();
  133. // std::cout
  134. // << std::setprecision(std::numeric_limits<FloatType>::digits10)
  135. // << "Qext = "
  136. // << ml_mie.GetQext()
  137. // << std::endl;
  138. *Qext = static_cast<double>(ml_mie.GetQext());
  139. *Qsca = static_cast<double>(ml_mie.GetQsca());
  140. *Qabs = static_cast<double>(ml_mie.GetQabs());
  141. *Qbk = static_cast<double>(ml_mie.GetQbk());
  142. *Qpr = static_cast<double>(ml_mie.GetQpr());
  143. *g = static_cast<double>(ml_mie.GetAsymmetryFactor());
  144. *Albedo = static_cast<double>(ml_mie.GetAlbedo());
  145. S1 = ConvertComplexVector<double>(ml_mie.GetS1());
  146. S2 = ConvertComplexVector<double>(ml_mie.GetS2());
  147. return ml_mie.GetMaxTerms();
  148. } catch(const std::invalid_argument& ia) {
  149. // Will catch if ml_mie fails or other errors.
  150. std::cerr << "Invalid argument: " << ia.what() << std::endl;
  151. throw std::invalid_argument(ia);
  152. return -1;
  153. }
  154. return 0;
  155. }
  156. //**********************************************************************************//
  157. // This function is just a wrapper to call the full 'nMie' function with fewer //
  158. // parameters, it is here mainly for compatibility with older versions of the //
  159. // program. Also, you can use it if you neither have a PEC layer nor want to define //
  160. // any limit for the maximum number of terms. //
  161. // //
  162. // Input parameters: //
  163. // L: Number of layers //
  164. // x: Array containing the size parameters of the layers [0..L-1] //
  165. // m: Array containing the relative refractive indexes of the layers [0..L-1] //
  166. // nTheta: Number of scattering angles //
  167. // Theta: Array containing all the scattering angles where the scattering //
  168. // amplitudes will be calculated //
  169. // //
  170. // Output parameters: //
  171. // Qext: Efficiency factor for extinction //
  172. // Qsca: Efficiency factor for scattering //
  173. // Qabs: Efficiency factor for absorption (Qabs = Qext - Qsca) //
  174. // Qbk: Efficiency factor for backscattering //
  175. // Qpr: Efficiency factor for the radiation pressure //
  176. // g: Asymmetry factor (g = (Qext-Qpr)/Qsca) //
  177. // Albedo: Single scattering albedo (Albedo = Qsca/Qext) //
  178. // S1, S2: Complex scattering amplitudes //
  179. // //
  180. // Return value: //
  181. // Number of multipolar expansion terms used for the calculations //
  182. //**********************************************************************************//
  183. int nMie(const unsigned int L, std::vector<double>& x, std::vector<std::complex<double> >& m, const unsigned int nTheta, std::vector<double>& Theta, double *Qext, double *Qsca, double *Qabs, double *Qbk, double *Qpr, double *g, double *Albedo, std::vector<std::complex<double> >& S1, std::vector<std::complex<double> >& S2) {
  184. return nmie::nMie(L, -1, x, m, nTheta, Theta, -1, Qext, Qsca, Qabs, Qbk, Qpr, g, Albedo, S1, S2);
  185. }
  186. //**********************************************************************************//
  187. // This function is just a wrapper to call the full 'nMie' function with fewer //
  188. // parameters, it is useful if you want to include a PEC layer but not a limit //
  189. // for the maximum number of terms. //
  190. // //
  191. // Input parameters: //
  192. // L: Number of layers //
  193. // pl: Index of PEC layer. If there is none just send -1 //
  194. // x: Array containing the size parameters of the layers [0..L-1] //
  195. // m: Array containing the relative refractive indexes of the layers [0..L-1] //
  196. // nTheta: Number of scattering angles //
  197. // Theta: Array containing all the scattering angles where the scattering //
  198. // amplitudes will be calculated //
  199. // //
  200. // Output parameters: //
  201. // Qext: Efficiency factor for extinction //
  202. // Qsca: Efficiency factor for scattering //
  203. // Qabs: Efficiency factor for absorption (Qabs = Qext - Qsca) //
  204. // Qbk: Efficiency factor for backscattering //
  205. // Qpr: Efficiency factor for the radiation pressure //
  206. // g: Asymmetry factor (g = (Qext-Qpr)/Qsca) //
  207. // Albedo: Single scattering albedo (Albedo = Qsca/Qext) //
  208. // S1, S2: Complex scattering amplitudes //
  209. // //
  210. // Return value: //
  211. // Number of multipolar expansion terms used for the calculations //
  212. //**********************************************************************************//
  213. int nMie(const unsigned int L, const int pl, std::vector<double>& x, std::vector<std::complex<double> >& m, const unsigned int nTheta, std::vector<double>& Theta, double *Qext, double *Qsca, double *Qabs, double *Qbk, double *Qpr, double *g, double *Albedo, std::vector<std::complex<double> >& S1, std::vector<std::complex<double> >& S2) {
  214. return nmie::nMie(L, pl, x, m, nTheta, Theta, -1, Qext, Qsca, Qabs, Qbk, Qpr, g, Albedo, S1, S2);
  215. }
  216. //**********************************************************************************//
  217. // This function is just a wrapper to call the full 'nMie' function with fewer //
  218. // parameters, it is useful if you want to include a limit for the maximum number //
  219. // of terms but not a PEC layer. //
  220. // //
  221. // Input parameters: //
  222. // L: Number of layers //
  223. // x: Array containing the size parameters of the layers [0..L-1] //
  224. // m: Array containing the relative refractive indexes of the layers [0..L-1] //
  225. // nTheta: Number of scattering angles //
  226. // Theta: Array containing all the scattering angles where the scattering //
  227. // amplitudes will be calculated //
  228. // nmax: Maximum number of multipolar expansion terms to be used for the //
  229. // calculations. Only use it if you know what you are doing, otherwise //
  230. // set this parameter to -1 and the function will calculate it //
  231. // //
  232. // Output parameters: //
  233. // Qext: Efficiency factor for extinction //
  234. // Qsca: Efficiency factor for scattering //
  235. // Qabs: Efficiency factor for absorption (Qabs = Qext - Qsca) //
  236. // Qbk: Efficiency factor for backscattering //
  237. // Qpr: Efficiency factor for the radiation pressure //
  238. // g: Asymmetry factor (g = (Qext-Qpr)/Qsca) //
  239. // Albedo: Single scattering albedo (Albedo = Qsca/Qext) //
  240. // S1, S2: Complex scattering amplitudes //
  241. // //
  242. // Return value: //
  243. // Number of multipolar expansion terms used for the calculations //
  244. //**********************************************************************************//
  245. int nMie(const unsigned int L, std::vector<double>& x, std::vector<std::complex<double> >& m, const unsigned int nTheta, std::vector<double>& Theta, const int nmax, double *Qext, double *Qsca, double *Qabs, double *Qbk, double *Qpr, double *g, double *Albedo, std::vector<std::complex<double> >& S1, std::vector<std::complex<double> >& S2) {
  246. return nmie::nMie(L, -1, x, m, nTheta, Theta, nmax, Qext, Qsca, Qabs, Qbk, Qpr, g, Albedo, S1, S2);
  247. }
  248. //**********************************************************************************//
  249. // This function emulates a C call to calculate complex electric and magnetic field //
  250. // in the surroundings and inside the particle. //
  251. // //
  252. // Input parameters: //
  253. // L: Number of layers //
  254. // pl: Index of PEC layer. If there is none just send 0 (zero) //
  255. // x: Array containing the size parameters of the layers [0..L-1] //
  256. // m: Array containing the relative refractive indexes of the layers [0..L-1] //
  257. // nmax: Maximum number of multipolar expansion terms to be used for the //
  258. // calculations. Only use it if you know what you are doing, otherwise //
  259. // set this parameter to 0 (zero) and the function will calculate it. //
  260. // ncoord: Number of coordinate points //
  261. // Coords: Array containing all coordinates where the complex electric and //
  262. // magnetic fields will be calculated //
  263. // //
  264. // Output parameters: //
  265. // E, H: Complex electric and magnetic field at the provided coordinates //
  266. // //
  267. // Return value: //
  268. // Number of multipolar expansion terms used for the calculations //
  269. //**********************************************************************************//
  270. int nField(const unsigned int L, const int pl, const std::vector<double>& x, const std::vector<std::complex<double> >& m, const int nmax, const int mode_n, const int mode_type, const unsigned int ncoord, const std::vector<double>& Xp_vec, const std::vector<double>& Yp_vec, const std::vector<double>& Zp_vec, std::vector<std::vector<std::complex<double> > >& E, std::vector<std::vector<std::complex<double> > >& H) {
  271. if (x.size() != L || m.size() != L)
  272. throw std::invalid_argument("Declared number of layers do not fit x and m!");
  273. if (Xp_vec.size() != ncoord || Yp_vec.size() != ncoord || Zp_vec.size() != ncoord
  274. || E.size() != ncoord || H.size() != ncoord)
  275. throw std::invalid_argument("Declared number of coords do not fit Xp, Yp, Zp, E, or H!");
  276. for (auto f:E)
  277. if (f.size() != 3)
  278. throw std::invalid_argument("Field E is not 3D!");
  279. for (auto f:H)
  280. if (f.size() != 3)
  281. throw std::invalid_argument("Field H is not 3D!");
  282. try {
  283. MultiLayerMie<FloatType> ml_mie;
  284. ml_mie.SetLayersSize(ConvertVector<FloatType>(x));
  285. ml_mie.SetLayersIndex(ConvertComplexVector<FloatType>(m));
  286. ml_mie.SetPECLayer(pl);
  287. ml_mie.SetFieldCoords({ConvertVector<FloatType>(Xp_vec),
  288. ConvertVector<FloatType>(Yp_vec),
  289. ConvertVector<FloatType>(Zp_vec) });
  290. ml_mie.RunFieldCalculation(mode_n, mode_type);
  291. E = ConvertComplexVectorVector<double>(ml_mie.GetFieldE());
  292. H = ConvertComplexVectorVector<double>(ml_mie.GetFieldH());
  293. return ml_mie.GetMaxTerms();
  294. } catch(const std::invalid_argument& ia) {
  295. // Will catch if ml_mie fails or other errors.
  296. std::cerr << "Invalid argument: " << ia.what() << std::endl;
  297. throw std::invalid_argument(ia);
  298. return - 1;
  299. }
  300. return 0;
  301. }
  302. } // end of namespace nmie