Configurations
STMMRunner.Layer
— TypeA horizontally infinite medium layer with certain thickness.
d
: Thickness of the layer. Default is0.0
.m
: Complex refractive index of the layer. Default is1.0
.β
: Complex chiral factor of the layer. Default is0.0
.
STMMRunner.STMMConfig
— TypeConfiguration for an STMM run.
working_directory
: The folder for storing intermediate results. Default is""
, which means a temporary folder will be created inside the current directory and be used as the working directory.number_processors
: The number of processes to be initiated. Default is1
.output_file
: Name of the output file. Default is"mstm.out"
.run_print_file
: Name of the file for storing run information. Default is"mstm.run"
.target_euler_angles_deg
: [MSTM v3] Rotate the target about the target coordinate frame using a z-y-z specified Euler angle. Default is(0.0, 0.0, 0.0)
.mie_epsilon
: [MSTM v3, MSTM v4] Convergence criterion for determining the truncation order for the wave function expansions for each sphere. Default is1e-6
.Can also be set as a negative integer
-L
to force all sphere expansions to be truncated atL
-th order.
translation_epsilon
: [MSTM v3, MSTM v4] Convergence criterion for estimating the maximum order of the T matrix for the cluster. Default is1e-6
.solution_epsilon
: [MSTM v3, MSTM v4, FaSTMM] Error criterion for the iterative solver (biconjugate gradient for MSTM, and GMRES for FaSTMM). Default is1e-8
.max_t_matrix_order
: [MSTM v4] The maximum truncation degree of the T matrix. This is needed to mostly to keep the code from crashing due to memory allocation limits. Default is120
.t_matrix_epsilon
: [MSTM v3] Convergence criterion for T matrix solution. Default is1e-7
.MSTM v4 should also support this option, but it is not yet implemented.
max_iterations
: [MSTM v3, MSTM v4, FaSTMM] The maximum number of iterations attempted to reach a solution. Default is5000
.store_translation_matrix
: [MSTM v3, MSTM v4]= false
, the near field translation matrices are calculated during iteration and not stored in memory;= true
, near field matrices are calculated prior to the solution and stored in memory. Storing the matrices in memory results in some improvement in execution time, yet the amount of memory used vs. the resources available is not checked. Use this option at your own peril. Default isfalse
.
sm_number_processors
: [MSTM v3] The number of processors to be used on parallel platform runs to calculate the expansion coefficients for the random orientation scattering matrix. The actual number of processors used during this step will be the minimum of the total number of processors for the run (the MPI size) and smnumberprocessors. Default is1
.
near_field_translation_distance
: [MSTM v3] The threshold for the translation from near-field calculation to far-field calculation.- A value larger than the maximum sphere-to-sphere $kr$ (i.e., a sufficiently large number, say 1e6) causes all spheres to belong to the near field set.
- A value smaller than the minimum sphere-to-sphere $kr$ (i.e., zero) causes all spheres to belong to the far field set.
- A negative value enables the automatic criterion:
\[kr_{i-j}\le\left[\frac{1}{2}(L_i+L_j)^2\right]\]
Default is
1e6
, which means all spheres are considered to be within each other's near field.
iterations_per_correction
: [MSTM v3] The maximum number of BCGM iterations for a given correction stage. Default is20
. Only works when there are some sphere pairs belonging to the far field set.
θ_min
: [MSTM v3] The minimum scattering polar angle. Default is0.0
.θ_max
: [MSTM v3] The maximum scattering polar angle. Default is180.0
.ϕ_min
: [MSTM v3] The minimum scattering azimuthal angle. Default is0.0
.ϕ_max
: [MSTM v3] The maximum scattering azimuthal angle. Default is0.0
.Δθ
: [MSTM v3, MSTM v4] The interval of θ for scattering matrix calculation. Default is1.0
.Δϕ
: [FaSTMM] The interval of ϕ for scattering matrix calculation. Default is10.0
.frame
: [MSTM v3, MSTM v4] This selects the reference coordinate frame upon which the scattering angles are based.IncidentFrame
, the frame is based on the incident field so thatθ = 0
is the forward scattering direction (i.e., the direction of incident field propagation) andθ = β, φ = 180
is the target z axis direction.TargetFrame
, the frame is based on the target frame so thatθ = 0
corresponds to the target z axis and
θ = β, φ = α`` is the incident field direction .false. Random orientation calculations force this option.
normalize_scattering_matrix
: [MSTM v3, MSTM v4] Whether or not to normalize the scattering matrix. Default istrue
. For MSTM v3, this option normalizes other matrix elements according to S11. For MSTM v4, other elements are always normalized to S11, and this option controls the normalization of S11 itself.
azimuthal_average
: [MSTM v3, MSTM v4] Whether or not to take azimuthal average for fixed orientation calculations. Default isfalse
.
single_origin_expansion
: [MSTM v4] Whether or not to reexpand the scattered electric field at a single origin. Default istrue
. Whenazimuthal_average
istrue
, this option must be turned on. It is recommended to turn this option off for sparse spheres, such as a fractal aggregate.
gaussian_beam_constant
: [MSTM v3, MSTM v4] Dimensionless inverse width CB, at the focal point, of an incident Gaussian profile beam. Setting to0
selects plane wave incidence. The localized approximation used to represent the Gaussian beam is accurate for CB ≤ 0.2. Default is
0.0` (plane wave).
gaussian_beam_focal_point
: [MSTM v3, MSTM v4] x, y, and z coordinates of the focal point of the Gaussian beam, relative to the origin defined byspheres
. Default is(0.0, 0.0, 0.0)
.
orientation
: [MSTM v3, MSTM v4]- Use
FixedOrientation
for a fixed orientation calculation. - Use
RandomOrientation
for a random orientation calculation.
Default is
FixedOrientation
.- Use
use_monte_carlo_integration
: [MSTM v4] Use Monte Carlo integration instead of analytical average. Default isfalse
.number_incident_directions
: [MSTM v4] Number of directions used for Monte Carlo integration. Works only whenuse_monte_carlo_integration = true
. Default is100
.α
: The azimuthal angle (in degrees) of the incident wave. Default is0.0
.β
: The polar angle (in degrees) of the incident wave. Default is0.0
.calculate_scattering_matrix
: [MSTM v4] Whether or not to calculate the scattering matrix. Default istrue
.calculate_scattering_coefficients
: [MSTM v3] Whether or not to calculate the scattering oefficients. Default istrue
. When= false
, the scattering coefficients will be read from the file specified byscattering_coefficient_file
.
scattering_coefficient_file
: [MSTM v3] File name for the scattering coefficient file. Default is"mstm.scat"
.- When
calculate_scattering_coefficients = false
, the scattering coefficients will be read from this file. - When
calculate_scattering_coefficients = true
, the scattering coefficients will be written to this file.
- When
use_fft_translation
: [MSTM v4] Whether or not to use the FFT-based accelerated algorithm. Default isfalse
.cell_volume_fraction
: [MSTM v4] This determines the grid size $d$ of the cubic lattice used in the algorithm. The formula is:\[d=\left(\frac{V_S}{cN_{s,ext}}\right)^{1/3}\]
where $V_S$ is the dimensionless total volume of the external spheres and $c$ is
cell_volume_fraction
. The optimum value is usually where the total number of nodes is close to the total number of external spheres NS,ext. Settingcell_volume_fraction = 0
will automate the setting of d using an estimate of the sphere volume fraction. Default is0.0
. Works only whenuse_fft_translation = true
.
node_order
: [MSTM v4] Truncation degree for the node–based expansions of the scattered field. Setnode_order = −L
, whereL
is a positive integer, will set the node order toceil(d) + L
. Default is-1
. Works only whenuse_fft_translation = true
.
scattering_map_model
: [MSTM v4]= 0
will have the scattering matrix printed at a range of polar angles (θ), with angular increment given in degrees byΔθ
. The scattering plane coincides with the incident azimuth plane. The limits on θ depend on the number of plane boundaries NB.scattering_map_model = 1
will print the scattering matrix in a pair (cosθ > 0, < 0) of 2D arrays, with coordinateskx = sinθcosφ
,ky = sinθsinφ
. The number of points on each axis is given byscattering_map_dimension
. Default is0
, and random orientation calculations force0
.
scattering_map_dimension
: [MSTM v4] The number of points on each axis. Default is15
. Works only whenscattering_map_model = 1
.
track_iterations
: [MSTM v3] Whether or not to print each iteration's error in the run print file. Default istrue
.calculate_near_field
: [MSTM v3, MSTM v4] Whether or not to calculate the near field. Default isfalse
.near_field_plane_coord
: [MSTM v3] Coordinate of the near field plane.1
= y-z,2
= z-x,3
= x-y. Default is1
.near_field_plane_position
: [MSTM v3] Position of the near field plane.- When
near_field_plane_coord = 1
, this is the x-coordinate. - When
near_field_plane_coord = 2
, this is the y-coordinate. - When
near_field_plane_coord = 3
, this is the z-coordinate.
Default is
0.0
.- When
near_field_plane_vertices
: [MSTM v3] Rectangle region of the near field plane.- When passing
(ΔX, ΔY)
, the actual region would be(X_min-ΔX, X_max+ΔX) x (Y_min-ΔY, Y_max+ΔY)
, whereX_min
,X_max
,Y_min
andY_max
are automatically calculated. - When passing
(X_min, Y_min, X_max, Y_max)
, the region would be used as it is.
Default is
(0.0, 0.0)
.- When passing
near_field_x_min
: [MSTM v4] The minimum x coordinate of the near field calculation region. Default is0.0
.near_field_x_max
: [MSTM v4] The maximum x coordinate of the near field calculation region. Default is0.0
.near_field_y_min
: [MSTM v4] The minimum y coordinate of the near field calculation region. Default is0.0
.near_field_y_max
: [MSTM v4] The maximum y coordinate of the near field calculation region. Default is0.0
.near_field_z_min
: [MSTM v4] The minimum z coordinate of the near field calculation region. Default is0.0
.near_field_z_max
: [MSTM v4] The maximum z coordinate of the near field calculation region. Default is0.0
.near_field_step_size
: [MSTM v3, MSTM v4] The spacial step size of the grid points. Default is0.1
.near_field_calculation_model
: [MSTM v4] Controls where the incident field appears in the calculation results;= 1
is the standard model, where the external field is = scattered + incident and the field inside the spheres is calculated from the internal field expansions;≠ 1
has the external field due solely to the scattered field, and the field inside the particles is now internal-incident. Default is1
.
polarization_angle_deg
: [MSTM v3] A specific polarization state of the incident field is needed to calculate the near field. The field is taken to be linearly polarized, with a polarization angle ofγ
relative to the k–z plane. Whenβ = 0
,γ
becomes the azimuth angle of the incident electric field vector relative to the cluster coordinate system. Default is0.0
.
store_surface_vector
: [MSTM v4] Whether or not to enable an accelerated algorithm for calculation of field value. Default istrue
.
near_field_expansion_spacing
: [MSTM v4] Size of the grid used for re–expansion of fields resulting from plane boundary and periodic lattice interactions. Default is5.0
. Experiment with this if your calculations are taking too long. Only works whenstore_surface_vector = true
.
near_field_expansion_order
: [MSTM v4] Expansion truncation order used for the grid re–expansion of the secondary field, per the above option. Should scale with nearfieldexpansionspacing following a Mie–type criteria. The bigger the value, the more accurate the results, but the slower the calculations and the greater the memory demands. Default is10
. Only works when `storesurface_vector = true`.
near_field_output_file
: [MSTM v3, MSTM v4] File name for the near field output. Default is"mstm.nf"
.plane_wave_epsilon
: [MSTM v3] The incident field component for the near field calculations – for either the plane wave or Gaussian beam models –- is calculated using a single, regular VSWF expansion centered about the beam focal point. The plane wave epsilon is a convergence criterion for this expansion. Default is1e-4
.
calculate_t_matrix
: [MSTM v3] Option to calculate the T matrix or use an exisiting T matrix file. Default istrue
, which calculates the T matrix.
t_matrix_file
: [MSTM v3]- When
calculate_t_matrix = true
, this is the file name for the T matrix output. - When
calculate_t_matrix = false
, this is the file name for reading the T matrix from.
Default is
"mstm.tm"
.- When
layers
: [MSTM v3, MSTM v4] Medium layers.- For MSTM v3, only the refractive index and chiral factor of the first layer will be used. Thickness is ignored.
- For MSTM v4, the first layer locates at
z=0
and extends to-∞
. The last layer extends to+∞
. The thickness of the first and the last layer is ignored.
spheres
: [MSTM v3, MSTM v4] Spheres.periodic
: [MSTM v4] Whenperiodic = true
, the spheres will be considered to construct a periodic lattice in the x-y plane. Note that periodic lattice is incompatible with random orientation.cell_size
: [MSTM v4] Whenperiodic = true
, this option sets the size of the periodic lattice. The cell size will be automatically enlarged if it cannot contain all the spheres.redirect_stdout
: Redirect the output of the program to the specified IO stream. Default isBase.stdout
.
STMMRunner.STMMConfig
— MethodHelper function for building a configuration on basis of an existing configuration.
STMMConfig(original; kwargs...)
STMMRunner.Sphere
— TypeA spherical particle.
r
: Radius of the sphere.x
: x coordinate of the sphere.y
: y coordinate of the sphere.z
: z coordinate of the sphere.m
: Complex refractive index of the sphere. Default is1.0
.β
: Complex chiral factor of the sphere. Default is0.0
.t_matrix
: The T matrix file specifying the scattering properties of the sphere. Default is""
(empty).