Skip to main content

N1081B Python SDK - WebSocket-based control library for the Nuclear Instruments N1081B logic unit

Project description

N1081B Python SDK

Python client library to control the Nuclear Instruments N1081B programmable logic unit over a WebSocket interface.

It provides a typed API to:

  • configure and read back all available functions:

    • Logic functions: Wire, AND, OR, OR-Veto, Veto, Majority, Coincidence Gate, LUT
    • Counting and timing: Scaler, Counter, Counter/Timer, Chronometer, Rate Meter, Rate Meter Advanced
    • Time measurement: Time Tag, Time of Flight, Time over Threshold
    • Signal generation: Pulse Generator, Digital Generator, Pattern Generator
  • Acquisition control (start/stop/reset) and result readout for all function types that support it

  • Input/output configuration per section: signal standard and impedance

  • Input configuration per channel: input enable, gate, delay and signal inversion

  • Output configuration per channel: output enable, monostable and signal inversion

  • Logic analyser: configuration and status readout for all input and output channels

  • System settings: ethernet, clock and configuration file management

It is also possible to set and get the input and output sections and channels configuration parameters.

It implements the logic analyser configuration and data retrieval to acquire the logic status of all input and output channels.

Ethernet, clock and configuration file settings can also be managed through the SDK.


Features

  • Simple WebSocket connection handling (connect/disconnect/login, password change)
  • Enumerations for all categorical parameters (sections, function types, signal standards, impedance, etc.)
  • High-level configuration helpers for each function type, for input/output sections and channels, for the logic analyzer and for the settings management

Installation

From PyPI

pip install n1081b-sdk

From source (this repository)

git clone https://gitlab.nuclearinstruments.eu/public-repo/n1081/n1081b_sdk_python.git
cd n1081b_sdk_python

# (optional) create a virtualenv
python -m venv .venv
source .venv/bin/activate  # on Windows: .venv\Scripts\activate

pip install -e .

Quick start

Minimal example showing how to connect to a board, configure a section and start acquisition.

from n1081b_sdk import N1081B

# 1. Create device object and connect
device = N1081B("192.168.0.10")
device.connect()

# 2. Login with default password
if not device.login("password"):
    raise RuntimeError("Login failed")

# 3. Configure input of section A in NIM standard
device.set_input_configuration(N1081B.Section.SEC_A, 
                               N1081B.SignalStandard.STANDARD_NIM,
                               N1081B.SignalStandard.STANDARD_NIM,
                               0, N1081B.SignalImpedance.IMPEDANCE_50)

# 4. Configure section A as a scaler
device.set_section_function(N1081B.Section.SEC_A, N1081B.FunctionType.FN_SCALER)

# 5. Configure scaler enabling all four input channels and the input gate
device.configure_scaler(N1081B.Section.SEC_A, True, True, True, True, True)

# 6. Read results
data = device.get_function_results(N1081B.Section.SEC_A)
print(data)

# 7. Disconnect
device.disconnect()

See the examples/ directory for fully worked demos of each function type.


Documentation

The full user guide is generated with MkDocs and published as GitLab Pages.

To build the documentation locally:

pip install -r requirements-mkdocs.txt
mkdocs serve

Then open http://127.0.0.1:8000/ in your browser.


Versioning

Follow Semantic Versioning for library releases:

  • MAJOR – incompatible API changes
  • MINOR – new functionality in a backwards compatible manner
  • PATCH – backwards compatible bug fixes

Tag releases in Git and publish the same version on PyPI and GitLab Pages.


Contact / Support

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

n1081b_sdk-1.0.3.tar.gz (2.0 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

n1081b_sdk-1.0.3-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file n1081b_sdk-1.0.3.tar.gz.

File metadata

  • Download URL: n1081b_sdk-1.0.3.tar.gz
  • Upload date:
  • Size: 2.0 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for n1081b_sdk-1.0.3.tar.gz
Algorithm Hash digest
SHA256 8fc40f2c0da88e67f176edb6a5102c2f27e2018c9d5d3dc0bf9a10f592108633
MD5 635a8ed4a38a13e7819eb98834b6e751
BLAKE2b-256 935e55d5ec5c13680af51bf86756ee3618d9bad29bc1380582d4c6f0a450f1f7

See more details on using hashes here.

File details

Details for the file n1081b_sdk-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: n1081b_sdk-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 9.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.10.12

File hashes

Hashes for n1081b_sdk-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 a79b659b3f977e890fe25721e4c8bc117647de07479f4c9670671ee6494c190b
MD5 11b234ad3b416a8db320e18e5eb4d448
BLAKE2b-256 4f0bc27b2b75fd5b4c87b45745198ac3877fb5e1ff81b62afb3c7e82b5872191

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page