bluesky.plans.rel_spiral_square#
- bluesky.plans.rel_spiral_square(detectors: Sequence[Readable], x_motor: Movable, y_motor: Movable, x_range: float, y_range: float, x_num: float, y_num: float, *, per_step: Callable[[Sequence[Readable], Movable, Any, Callable[[Sequence[Readable]], Generator[Msg, Any, Mapping[str, Reading]]] | None], Generator[Msg, Any, P]] | Callable[[Sequence[Readable], Mapping[Movable, Any], dict[Movable, Any], Callable[[Sequence[Readable]], Generator[Msg, Any, Mapping[str, Reading]]] | None], Generator[Msg, Any, P]] | None = None, md: dict[str, Any] | None = None) Generator[Msg, Any, str] [source]#
Relative square spiral scan, centered around current (x, y) position.
- Parameters:
- detectorslist
list of ‘readable’ objects
- x_motorobject
any ‘settable’ object (motor, temp controller, etc.)
- y_motorobject
any ‘settable’ object (motor, temp controller, etc.)
- x_rangefloat
x width of spiral
- y_rangefloat
y width of spiral
- x_numfloat
number of x axis points
- y_numfloat
Number of y axis points.
- per_stepcallable, optional
hook for cutomizing action of inner loop (messages per step). See docstring of
bluesky.plans.one_nd_step()
(the default) for details.- mddict, optional
metadata
See also
bluesky.plans.spiral_square()
bluesky.plans.spiral()
bluesky.plans.relative_spiral()
bluesky.plans.spiral_fermat()
bluesky.plans.relative_spiral_fermat()