You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: paper/paper.md
+12-9Lines changed: 12 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,7 @@ tags:
8
8
- condensed matter physics
9
9
- cryogenics
10
10
- scpi
11
+
- instrumentation
11
12
authors:
12
13
- name: Prathamesh Deshmukh
13
14
orcid: 0009-0008-3278-0837
@@ -32,31 +33,33 @@ bibliography: paper.bib
32
33
PICA (Python-based Instrument Control and Automation) is a modular, open-source software suite designed to automate complex characterisation experiments in condensed matter physics. PICA is designed as a versatile framework capable of operating on any standard laboratory workstation.
33
34
It provides an extensible unified graphical user interface (GUI) for orchestrating high-precision instruments, specifically source-measure units, nanovoltmeters, temperature controllers, and LCR metres.
34
35
36
+
Built on the robust Python scientific ecosystem, PICA leverages community standard libraries as an alternative to licenced commercial software for instrument control.
37
+
By utilising threading and multiprocessing capabilities, PICA ensures that the entire hardware ecosystem functions as a single cohesive unit. This allows the system to perform automated protocols, including temperature-dependent resistivity, current voltage (I-V) characterisation, and pyroelectric current measurement, without requiring physical reconfiguration of the measurement setups.
35
38
The suite supports characterisation across a vast resistance range of 24 orders of magnitude (10 nΩ to 10 PΩ) and orchestrates measurements under varying magnetic fields and temperatures.
36
-
Python was chosen for its free, open source nature, cross-platform capabilities, and extensive ecosystem of over 100,000 packages, offering a powerful, community-supported alternative to licensed commercial software for instrument control.
37
39
38
-
By utilising threading and multiprocessing capabilities, PICA ensures that the entire hardware ecosystem functions as a single cohesive unit. This allows the system to perform automated protocols, including temperature-dependent resistivity current voltage (I-V) characterisation and pyroelectric current measurement, without requiring physical reconfiguration of the measurement setups.
39
40
40
41
41
42
# Statement of need
42
43
43
44
Advancements in experimental physics depend on the precise characterisation of material properties under extreme physical conditions. Researchers have to choose between expensive proprietary visual programming software or developing a custom measurement script from scratch.
44
45
45
-
While powerful ecosystem libraries such as PyVISA [@grecco2023pyvisa] and PyMeasure [@pymeasure_2025] provide the foundational drivers for instrumental communication, they are fundamentally software libraries that require the user to write and maintain code. This creates a technical barrier for researchers who lack programming expertise. PICA addresses this gap by functioning as a turnkey application rather than a library. It offers a "ready-to-run" graphical interface that abstracts the underlying control logic, allowing experimentalists to focus on data acquisition without needing to develop custom software scripts for the supported hardware configurations.
46
+
While powerful ecosystem libraries such as PyVISA [@grecco2023pyvisa] and PyMeasure [@pymeasure_2025] provide the foundational drivers for instrumental communication, they are fundamentally software libraries that require the user to write and maintain code. This creates a barrier to entry for researchers requiring immediate data acquisition without the overhead of developing and maintaining a custom codebase.
46
47
47
-
The software was specifically developed to control a multifunctional, custom-designed probe inserted into the Physical Property Measurement System (PPMS), enabling fully user-defined measurement protocols across the temperature range of 5 K to 350 K. It eliminates the need to alter the measurement setup for full characterisation, handling everything from Delta mode (low resistance) to high impedance electrometry. The primary goal of PICA was to facilitate the precise characterisation of materials ranging from low-noise superconductors to high-band gap insulators (covering 24 orders of magnitude in resistance) using a single unified framework.
48
+
PICA addresses this gap by functioning as a turnkey application rather than a library. It offers a "ready-to-run" graphical interface that abstracts the underlying control logic, allowing experimentalists to focus on data acquisition without needing to develop custom software scripts for the supported hardware configurations.
49
+
50
+
While originally developed to control a multifunctional, custom-designed probe inserted into the Physical Property Measurement System (PPMS), PICA's architecture enables fully user-defined measurement protocols across the temperature range of 5 K to 350 K. It eliminates the need to alter the measurement setup for full characterisation, handling everything from Delta mode (low resistance) to high impedance electrometry. The primary goal of PICA was to facilitate the precise characterisation of materials ranging from low-noise superconductors to high-band gap insulators (covering 24 orders of magnitude in resistance) using a single unified framework.
48
51
49
52
The system is currently validated with industry-standard hardware, including the Keithley 6221 Current Source, Keithley 2182 Nanovoltmeter, and Keithley 6517B Electrometer.
50
53
51
-
While the current implementation drives specific instruments, the underlying framework is universal. Researchers using different hardware models need only replace the specific SCPI commands with their instrument equivalent commands to utilise the suite.
54
+
While the current implementation drives specific instruments, the underlying framework is hardware agnostic. Researchers using different hardware models need only replace the specific SCPI commands with their instrument equivalent commands to utilise the suite.
52
55
53
56
It differentiates itself through the following unique features:
54
57
55
58
***Accessibility:** A professional dashboard that allows researchers without coding experience to configure and run a complex measurement protocol immediately using the suite's pre-packaged measurement modules.
56
59
57
-
***Physical Validation:** PICA's protocols are actively used for cryogenic transport measurements (80K - 320K) at the UGC DAE Consortium for Scientific Research, Mumbai Centre, validating the software's core architecture in a real-world research environment and providing a stable, tested foundation for the university and researchers to build upon.
60
+
***Operational Validation:** PICA's protocols are actively used for cryogenic transport measurements (80K - 320K) at the UGC DAE Consortium for Scientific Research, Mumbai Centre, validating the software's core architecture in a real-world research environment and providing a stable, tested foundation for the university and researchers to build upon.
58
61
59
-
***Process Isolation:** PICA deploys a `multiprocessing` architecture that runs instrumentation control logic in an isolated process. This ensures that hardware timeouts or driver crashes do not freeze the main dashboard, a common issue in single-threaded Python scripts.
62
+
***Fault Tolerance:** PICA prevents hardware timeouts or driver crashes from freezing the main dashboard by isolating control logic from the user interface, a critical advantage over single-threaded scripts
60
63
61
64
***Modular CLI Architecture:** As demonstrated in the repository, measurement modules also contain CLI measurement module counterparts that allow researchers to utilise PICA's measurement protocol and logic for headless automation or integration into other workflows without GUI overhead.
62
65
@@ -73,7 +76,7 @@ PICA is built on a modular architecture characterised by self-contained modules,
73
76
74
77
### Process Isolation and Concurrency
75
78
76
-
Unlike simple script-based automation, PICA decouples the User Interface (UI) from the instrumentation control logic. It utilises Python's standard 'multiprocessing' libraries to spawn isolated processes for measurement tasks.
79
+
Unlike simple script-based automation, PICA decouples the User Interface (UI) from the instrumentation control logic. It utilises Python's standard `multiprocessing` libraries to spawn isolated processes for measurement tasks.
77
80
78
81
***Stability:** If an instrument hangs or a communication bus times out, the isolated process can be terminated safely without freezing the main GUI or losing previous data.
79
82
@@ -87,7 +90,7 @@ PICA utilises **PyVISA** [@grecco2023pyvisa] to abstract the low-level communica
87
90
88
91
1.**Connection Verification:** A built-in "VISA Instrument Scanner" queries the bus (`*IDN?`) to map the connected instrument addresses.
89
92
90
-
2.**Instrument Reset Protocol:** To eliminate the influence of all previous experiments, all stored data, cache in buffers, and existing settings or configurations are explicitly reset, thereby providing a clean initial state before each measurement.
93
+
2.**Instrument Reset Protocol:** To eliminate the influence of all previous experiments, all stored data, instrument buffers, and existing settings or configurations are explicitly reset, thereby providing a clean initial state before each measurement.
91
94
92
95
3.**Graceful Shutdown:** A "Safety Shutdown Routine" logic ensures that sources are ramped down to zero and heaters are disabled safely, even if the software is interrupted unexpectedly.
0 commit comments