Exemplo n.º 1
0
 def magnet_current(self):
     """
     This is the persistent magnet current setting
     """
     response = self.device.ask('imag?')    
     stripped_response =  Quantity.from_string(response)[0]
     return stripped_response
Exemplo n.º 2
0
 def power_supply_current(self):
     """
     The power supply output current
     """
     response = self.device.ask('iout?')    
     stripped_response =  Quantity.from_string(response)[0]
     return stripped_response    
Exemplo n.º 3
0
 def low_limit(self):
     """
     The lower limit on the magnetic current
     """
     response = self.device.ask('llim?')
     stripped_response =  Quantity.from_string(response)[0]
     return stripped_response