Example with the BlueFors¶
Import¶
[3]:
import qcodes as qc
from qcodes_contrib_drivers.drivers.BlueFors.BlueFors import BlueFors
Load instrument¶
The required imformation is a valid path towards the stored BlueFors log files and the different channel of the temperatures and pressures.
[4]:
folder_path = 'Valid_path'
bf = BlueFors('bf_fridge',
folder_path=folder_path,
channel_vacuum_can=1,
channel_pumping_line=2,
channel_compressor_outlet=3,
channel_compressor_inlet=4,
channel_mixture_tank=5,
channel_venting_line=6,
channel_50k_plate=1,
channel_4k_plate=2,
channel_magnet=3,
channel_still=6,
channel_mixing_chamber=5)
print(bf.pressure_vacuum_can())
print(bf.pressure_compressor_inlet())
print(bf.pressure_compressor_outlet())
print(bf.pressure_mixture_tank())
print(bf.pressure_venting_line())
print(bf.temperature_4k_plate())
print(bf.temperature_50k_plate())
print(bf.temperature_magnet())
print(bf.temperature_mixing_chamber())
print(bf.temperature_still())
Connected to: None blue_lagoon (serial:None, firmware:None) in 0.00s
4.53e-06
576.0
555.0
49.6
6.36
2.9866099999999998
42.9614
3.26158
0.912985
0.0078465