PointSpreadFunction¶
- class acoular.fbeamform.PointSpreadFunction¶
Bases:
HasStrictTraits
The point spread function.
This class provides tools to calculate the PSF depending on the used microphone geometry, focus grid, flow environment, etc. The PSF is needed by several deconvolution algorithms to correct the aberrations when using simple delay-and-sum beamforming.
- grid_indices = CArray( …¶
Indices of grid points to calculate the PSF for.
- calcmode = Enum('single', 'block', 'full', 'readonly', desc='mode of calculation / storage')¶
Flag that defines how to calculate and store the point spread function defaults to ‘single’.
- ‘full’: Calculate the full PSF (for all grid points) in one go (should be used if the PSF
at all grid points is needed, as with
DAMAS
)
- ‘single’: Calculate the PSF for the grid points defined by
grid_indices
, one by one (useful if not all PSFs are needed, as with
CLEAN
)
- ‘single’: Calculate the PSF for the grid points defined by
- ‘block’: Calculate the PSF for the grid points defined by
grid_indices
, in one go (useful if not all PSFs are needed, as with
CLEAN
)
- ‘block’: Calculate the PSF for the grid points defined by
- ‘readonly’: Do not attempt to calculate the PSF since it should already be cached (useful
if multiple processes have to access the cache file)
- precision = Enum('float64', 'float32', desc='precision (32/64 Bit) of result, corresponding to numpy dtypes')¶
Floating point precision of property psf. Corresponding to numpy dtypes. Default = 64 Bit.
- psf = Property(desc='point spread function')¶
The actual point spread function.
- freq = Float(1.0, desc='frequency')¶
Frequency to evaluate the PSF for; defaults to 1.0.
- calc_psf(ac, gp)¶
point-spread function calculation.