yogevb / a-dda

Automatically exported from code.google.com/p/a-dda
0 stars 0 forks source link

Calculate as many cross section as possible when it is fast #133

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Currently, ADDA calculates only Cext and Cabs by default (at almost no extra 
time), while Csca requires significant extra simulations (integration of the 
scattered field over the solid angle). At the same time, the manual explains 
that Csca can be obtained as Cext-Cabs with no extra simulations. The same 
applies to different ways to calculate Cpr.

The idea is to divide ADDA simulations into three phases: internal fields, 
scattered fields (over a large grid of angles), and radiation forces. Whenever, 
one of this is triggered by command line options, all possible quantities 
should be calculated. For example, if only internal fields are simulated 
(always), calculate Cext, Cabs, and Csca. If scattered fields are integrated 
over solid angle, calculate Csca,g,g*Csca,Cpr. If radiation force is 
calculated, calculate Cpr and possibly g.

Different ways to calculate Csca or Cpr may lead to different accuracies. 
First, comparing these values may be used as consistency check. For instance, 
Csca will lead to test of convergence of the iterative solver and accuracy of 
integration over the solid angle. Second, it would be nice to estimate the 
accuracy of each of the ways (due to internal reasons, and not due to the DDA 
discretization itself) and provide it to the users. The latter should help a 
user to decide whether, e.g., a fast simulation of Csca is sufficient or slower 
method is required.

Original issue reported on code.google.com by yurkin on 15 Oct 2011 at 10:12

GoogleCodeExporter commented 9 years ago
It should also be possible to calculate Csca by some integration over the 
particle volume, similar to Cext and Cabs, since Csca.g can be obtained from 
integral of the "scattering" component of the radiation force.

Then after acceleration of radiation forces, need for integration over the 
scattering solid angle can be removed at all.

Original comment by yurkin on 22 May 2012 at 5:21

GoogleCodeExporter commented 9 years ago
A related aspect is to calculate radiative decay rate enhancement (for 
point-dipole incident field) through a direct calculation of scattered power 
(including the emitting dipole itself). Similarly, it can be compared to the 
way that is used currently (total - nonradiative), but generally has little 
added value for users.

Additional benefit of such approach may appear for particles above metallic 
surfaces - there total nonradiative part is hard to calculate directly 
(requires one to assess the power absorbed in the substrate). So calculating 
the total scattered power into the upper hemisphere may be a way to go.

Original comment by yurkin on 29 Jul 2014 at 10:11