calc-expansion-coeffs-spectra.py 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. #!/usr/bin/env python
  2. # -*- coding: UTF-8 -*-
  3. #
  4. # Copyright (C) 2018 Konstantin Ladutenko <kostyfisik@gmail.com>
  5. #
  6. # This file is part of python-scattnlay
  7. #
  8. # This program is free software: you can redistribute it and/or modify
  9. # it under the terms of the GNU General Public License as published by
  10. # the Free Software Foundation, either version 3 of the License, or
  11. # (at your option) any later version.
  12. #
  13. # This program is distributed in the hope that it will be useful,
  14. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. # GNU General Public License for more details.
  17. #
  18. # The only additional remark is that we expect that all publications
  19. # describing work using this software, or all commercial products
  20. # using it, cite the following reference:
  21. # [1] O. Pena and U. Pal, "Scattering of electromagnetic radiation by
  22. # a multilayered sphere," Computer Physics Communications,
  23. # vol. 180, Nov. 2009, pp. 2348-2354.
  24. #
  25. # You should have received a copy of the GNU General Public License
  26. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  27. from scattnlay import fieldnlay, scattnlay, expansioncoeffs, scattcoeffs
  28. import numpy as np
  29. import cmath
  30. WL=550 #nm
  31. core_r = 102
  32. #core_r = 120
  33. index_NP = 4.0
  34. x = np.ones((1), dtype = np.float64)
  35. m = np.ones((1), dtype = np.complex128)
  36. import matplotlib.pyplot as plt
  37. # dipole - 1 -- 2
  38. # quad - 2 -- 4
  39. # octo - 3 -- 8
  40. # hex - 4 -- 16
  41. # 32 - 5 -- 32
  42. npts = 151
  43. ext = ".png"
  44. # npts = 351
  45. # ext = ".pdf"
  46. x[0] = 2.0*np.pi*core_r/WL#/4.0*3.0
  47. m[0] = index_NP
  48. # for mode_type, field_to_plot, WL, mode_n, crossplane, isStream in plot_params :
  49. comment='bulk-NP-R'+str(core_r)+'nm-WL'+str(WL)
  50. # scattnlay function process several NP designs in one call
  51. x = np.array([x])
  52. m = np.array([m])
  53. #print(x.shape)
  54. terms, Qext, Qsca, Qabs, Qbk, Qpr, g, Albedo, S1, S2 = scattnlay(x, m)
  55. nmax = terms
  56. #print(nmax)
  57. terms, an, bn = scattcoeffs(x, m, nmax)
  58. #print(terms, an)
  59. terms, aln, bln, cln, dln = expansioncoeffs(x, m, nmax)
  60. print(terms, dln)
  61. # fig, axs = plt.subplots(1,1)#, sharey=True, sharex=True)
  62. # fig.tight_layout()
  63. # fig.subplots_adjust(hspace=0.3, wspace=-0.1)
  64. # # plt.savefig("Egor3/"+"%02d"%(i)+
  65. # # comment+"-R"+str(int(round(x[-1]*WL/2.0/np.pi)))+"-"+crossplane+"-"
  66. # # +field_to_plot+"-mode"+mode+mt+st+ext,pad_inches=0.02, bbox_inches='tight')
  67. # plt.clf()
  68. # plt.close()
  69. #print("end")