BeamformerTimeTraj#
- class acoular.tbeamform.BeamformerTimeTraj
Bases:
BeamformerTimeProvides a basic time domain beamformer with time signal output.
for a grid moving along a trajectory.
- trajectory = Instance(Trajectory)
Trajectoryor derived object. Start time is assumed to be the same as for the samples.
- rvec = CArray(dtype=float, shape=(3,), value=np.array((0, 0, 0)))
Reference vector, perpendicular to the y-axis of moving grid.
- conv_amp = Bool(False)
Considering of convective amplification in beamforming formula.
- precision = Enum(64, 32)
Floating point and integer precision
- digest = Property( β¦
A unique identifier for the beamformer, based on its properties. (read-only)
- get_r0(tpos)
Get reference distance for grid positions.
- Parameters:
- tpos
numpy.ndarray Grid positions.
- tpos
- Returns:
floatornumpy.ndarrayReference distance(s).
- result(num=2048)
Python generator that yields the time-domain beamformer output.
The output time signal starts for source signals that were emitted from the
Gridat t=0.- Parameters:
- num
int This parameter defines the size of the blocks to be yielded (i.e. the number of samples per block). Defaults to 2048.
- num
- Yields:
numpy.ndarray- Samples in blocks of shape (
num,num_channels). num_channelsis usually very large (number of grid points). The last block returned by the generator may be shorter thannum.
- Samples in blocks of shape (