Python common code base to control research devices, in particular, as used in Christian Franck's High Voltage Lab (HVL), D-ITET, ETH Zurich
Project description
HVL Common Code Base
A unified Python framework, High Voltage Laboratory common code base (HVL CCB), for controlling devices used in high-voltage research. All implemented devices are used and tested in the High Voltage Laboratory HVL of the Federal Institute of Technology Zurich (ETH Zurich).
- Free software: GNU General Public License v3
- Copyright (c) 2019-2025 ETH Zurich, SIS ID and HVL D-ITET
Getting Started
Install hvl_ccb with uv:
uv pip install hvl_ccb
More details about how to install, please refer to [`INSTALLATION.md`](https://gitlab.com/ethz_hvl/hvl_ccb/-/blob/devel/INSTALLATION.md?ref_type=heads).
More details about how to install, please refer to {ref}`Installation <installation>`.
Example code for each supported device can be found in examples.
Features
For managing multi-device experiments instantiate the ExperimentManager
utility class.
Supported Devices
The device wrappers in hvl_ccb provide a standardised API with configuration
dataclasses, various settings and options, as well as start/stop methods.
Currently wrappers are available to control the following devices:
| Function/Type | Devices |
|---|---|
| Bench Multimeter | Fluke 8845A and 8846A |
| 6.5 Digit Precision Multimeter | |
| Data acquisition | LabJack (T4, T7, T7-PRO; requires LJM Library) |
| Pico Technology PT-104 Platinum Resistance Data Logger (requires PicoSDK/libusbpt104) | |
| Digital Delay Generator | Highland T560 |
| Digital IO | LabJack (T4, T7, T7-PRO; requires LJM Library) |
| Electrometer | Keysight-B2985A |
| Experiment control | HVL Cube with and without Power Inverter |
| Filter | Precision Filters Inc. PFA-2 |
| Gas Analyser | MBW 973-SF6 gas dew point mirror analyzer |
| Pfeiffer Vacuum TPG (25x, 26x and 36x) controller for compact pressure gauges | |
| SST Luminox oxygen sensor | |
| Laser | CryLaS pulsed laser |
| CryLaS laser attenuator | |
| Oscilloscope | Rhode & Schwarz RTO 1024 |
| TiePie (HS5, HS6, WS5) | |
| Power supply | Elektro-Automatik PSI9000 |
| FuG Elektronik | |
| Heinzinger PNC | |
| Technix capacitor charger | |
| Korad Lab Bench DC Power Supply KA3000 | |
| Stepper motor drive | Newport SMC100PP |
| Schneider Electric ILS2T | |
| Temperature control | Lauda PRO RP 245 E circulation thermostat |
| Waveform generator | TiePie (HS5, WS5) |
Each device uses at least one standardised communication protocol wrapper.
Communication protocols
In hvl_ccb by "communication protocol" we mean different levels of
communication standards, from the low level actual communication protocols like
serial communication to application level interfaces like VISA TCP standard. There
are also devices in hvl_ccb that use a dummy communication protocol;
this is because these devices are build on proprietary manufacturer libraries that
communicate with the corresponding devices, as in the case of TiePie or LabJack devices.
The communication protocol wrappers in hvl_ccb provide a standardised API with
configuration dataclasses, as well as open/close and read/write/query methods.
Currently, wrappers for the following communication protocols are available:
| Communication Protocol | Devices Using |
|---|---|
| Modbus TCP | Schneider Electric ILS2T stepper motor drive |
| OPC UA | HVL Cube with and without Power Inverter |
| Serial | CryLaS pulsed laser and laser attenuator |
| FuG Elektronik power supply (e.g. capacitor charger HCK) using the Probus V protocol | |
| Heinzinger PNC power supply using Heinzinger Digital Interface I/II | |
| SST Luminox oxygen sensor | |
| MBW 973-SF6 gas dew point mirror analyzer | |
| Newport SMC100PP single axis driver for 2-phase stepper motors | |
| Pfeiffer Vacuum TPG (25x, 26x and 36x) controller for compact pressure gauges | |
| Technix capacitor charger | |
| Korad Lab Bench DC Power Supply KA3000 | |
| TCP | Digital Delay Generator Highland T560 |
| Fluke 8845A and 8846 | |
| Lauda PRO RP 245 E circulation thermostat | |
| Technix capacitor charger | |
| VISA TCP | Elektro-Automatik PSI9000 DC power supply |
| Keysight-B2985A electrometer | |
| Rhode & Schwarz RTO 1024 oscilloscope | |
| Proprietary | LabJack (T4, T7, T7-PRO) devices, which communicate via LJM Library |
| Pico Technology PT-104 Platinum Resistance Data Logger, which communicates via PicoSDK/libusbpt104 | |
| TiePie (HS5, HS6, WS5) oscilloscopes and generators, which communicate via LibTiePie SDK |
Sensor and Unit Conversion Utility
The Conversion Utility is a submodule that allows on the one hand a unified implementation of hardware-sensors and on the other hand provides a unified way to convert units. Furthermore it is possible to map two ranges on to each other. This can be useful to convert between for example and 4 - 20 mA and 0 - 10 V, both of them are common as sensor out- or input. Moreover, a subclass allows the mapping of a bit-range to any other range. For example a 12 bit number (0-4095) to 0 - 10. All utilities can be used with single numbers (int, float) as well as array-like structures containing single numbers (np.array(), list, dict, tuple).
Currently the following sensors are implemented:
- LEM LT 4000S
- LMT 70A
The following unit conversion classes are implemented:
- Temperature (Kelvin, Celsius, Fahrenheit)
- Pressure (Pascal, Bar, Atmosphere, Psi, Torr, Millimeter Mercury)
Documentation
Note: if you're planning to contribute to the `hvl_ccb` project read
the [`CONTRIBUTING.md`](https://gitlab.com/ethz_hvl/hvl_ccb/-/blob/devel/CONTRIBUTING.md?ref_type=heads).
Note: if you're planning to contribute to the `hvl_ccb` project read
the {ref}`contributing <contributing>` section in the HVL CCB documentation.
Do either:
or
-
build and read HVL CCB documentation locally; install first Graphviz (make sure to have the
dotcommand in the executable search path) and the Python build requirements for documentation::pip install docs/requirements.txtand then either on Windows in Git BASH run::
./make.sh docsor from any other shell with GNU Make installed run::
make docsThe target index HTML (
"docs/_build/html/index.html") should open automatically in your Web browser.
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file hvl_ccb-0.19.1.tar.gz.
File metadata
- Download URL: hvl_ccb-0.19.1.tar.gz
- Upload date:
- Size: 283.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b7d7906d5dad13724f2bbd368b16cf686922a9fe46a1f6dfcc32d9447647140
|
|
| MD5 |
7bdceec1ce4e871328c97d27dee1c7a1
|
|
| BLAKE2b-256 |
1f6cd8e9ec34d7acc15835020f18cc90926ec1676e8dec15cb8747f10da89f3b
|
File details
Details for the file hvl_ccb-0.19.1-py3-none-any.whl.
File metadata
- Download URL: hvl_ccb-0.19.1-py3-none-any.whl
- Upload date:
- Size: 238.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99cf37075f24e187192916780303129b330b36d187efb92b65479aaf40ebb145
|
|
| MD5 |
7615f0dafe6281d590570905554d2031
|
|
| BLAKE2b-256 |
62ad9f180d9c98d511da00a36bac6c4871749c76bdc2f5fafe27300ae8ac35cf
|