iseg

The object which operates the ISEG high voltage device. (Iseg script source code)

In Pylatus Script editor the iseg object is already imported into Python interpreter, but if you have external .py files, then you can import it as:

from auxygen_iseg import PyIseg

iseg = PyIseg()

Instance methods:


setVoltage

iseg.setVoltage(voltage, ramp_rate)

Creates a sequence action to set the voltage value with the ramp_rate. Maximum voltage depends on the model (usually 2000 V). Ramp rate is from 2 to 255 V/s.


ramp

iseg.ramp(voltage, ramp_rate)

Alias for iseg.setVoltage.


wait

iseg.wait()

Creates a sequence action to wait until the voltage is set by the previous command.