Measurements with Cryostream¶
# from 300 K to 200 K with a step 10
# and from 200 K to 80 K with a step 1 K
temps = list(range(300, 200, -10)) + list(range(200, 79, -1))
for t in temps:
# ramp with rate 360 K/hour
cryostream.ramp(t, 360)
cryostream.wait()
# sometimes it's useful to wait for temperature stabilization
diffractometer.sleep(120)
# Folder pattern is like Sample1_100K
diffractometer.scan(folder=f'Sample1_{t:03d}K')