Skip to content

SentioSiphPositioner#

The SentioSiphPositioner can be a part of a SentioProber. This class can be used to control the positioner.


property Location#

Gets the location name for the positioner.

Returns#

Type Description
string The location of the positioner.

method FastAlignment()#

Executes fast alignment for the SiPh positioner.

Example#

probe_station = measmatic.GetDevice('device-probe-station')
siph_positioner_east = probe_station.GetSiphPositioner("East")
siph_positioner_east.FastAlignment()

method GradientSearch()#

Executes the gradient search for the SiPh positioner.

Example#

probe_station = measmatic.GetDevice('device-probe-station')
siph_positioner_east = probe_station.GetSiphPositioner("East")
siph_positioner_east.GradientSearch()

method MoveHover()#

Moves the SiPh positioner to hover height.

Example#

probe_station = measmatic.GetDevice('device-probe-station')
siph_positioner_east = probe_station.GetSiphPositioner("East")
siph_positioner_east.MoveHover()

method MoveSeparation()#

Moves the SiPh positioner to separation height.

Example#

probe_station = measmatic.GetDevice('device-probe-station')
siph_positioner_east = probe_station.GetSiphPositioner("East")
siph_positioner_east.MoveSeparation()

method StepFirstSite()#

Steps to the first site defined for this SiPh positioner.

Returns#

Type Description
string The identification label defined for this position.
float The x position of the positioner in micrometers.
float The y position of the positioner in micrometers.

Example#

probe_station = measmatic.GetDevice('device-probe-station')
siph_positioner_east = probe_station.GetSiphPositioner("East")
id, x_pos, y_pos = siph_positioner_east.StepFirstSite()

method StepNextSite()#

Steps to the next site defined for this SiPh positioner.

Returns#

Type Description
string The identification label defined for this position.
float The x position of the positioner in micrometers.
float The y position of the positioner in micrometers.

Example#

probe_station = measmatic.GetDevice('device-probe-station')
siph_positioner_east = probe_station.GetSiphPositioner("East")
id, x_pos, y_pos = siph_positioner_east.StepNextSite()