Automating device data analysis

Lately, there have been some efforts to incorporate machine learning in experimental measurements, which are generally quite known in the community, and especially the quantum one (see here for example). While these types of work are currently ‘hot’, I decided to do a small post here about the small cousin of ML, which is automation. That is: Extracting information from large datasets of experiments.

This came about from my recently published work done at Grenoble, in which I had the chance to work with a large number of well-organized experiments. And I think it goes nicely with my previous post which is about automation in materials simulation.

Here, instead, I will present some common methods of extracting pinch-off voltages using Python. I did a previous post on a similar subject. Together they can be quite handy for extracting information fast from 1D data. Of course, they can be generalized for 2D also, but the here we focus on device measurements and not spectroscopy. In fact, for the 2D plots I analysed, I handled them as a list of 1D data, so I applied immediately similar routines, instead of 2D ones.

Continue reading

Extracting pinch-off and threshold voltages in quantum transistors

Many times I needed to extract threshold voltages from experimental results. I remember in my PhD days, this was quite a debate, and we could generally agree there is no optimum way of doing it. The problem mostly lied in that you are not exactly sure in which part of the plot the current starts to flow, or the channel is depleted. In room temperature transistors, this was mainly due to the intermediate region of thermal population of the bands. In quantum transistors, we are playing in the low temperature field and most of the time dopants are thought to be frozen.

What is really certain is that all voltages that you compare against will need to be extracted using the same method.

Since what we are interested in is changes in the curvature of the plot, we expect to play around with derivatives a lot. But for this, there is the extra problem that experimental results can be very noisy. Once you take the derivative, you introduce further noise, that goes even worse in the second derivative (see figure below).

Characteristics of a transistor with 2 pinch-off positions in the classical regime. First derivative (blue plot) shows pronounced amount of noise.
Continue reading