A Python package to control the Matisse 2 TS.
Project description
matisse-controller
A Python package to control the Matisse 2 TS laser for the University of Washington's Optical Spintronics and Sensing Lab.
Requirements: Python 3.7+, NI VISA, PyVISA, pySerial, SciPy, matplotlib, PyQt5
Tested on Windows 10 (x64).
Installation
$ pip install matisse-controller
Usage
To launch the GUI, connect the Matisse and a supported wavemeter, and then run:
$ matisse-controller
To configure the behavior of the program, click the 'Configuration' menu option from the main GUI, or run:
$ matisse-config
The GUI uses a Python API to control the Matisse. If you're writing a Python program, just import the subpackages
that contain the APIs you want. The matisse
subpackage contains Matisse-related components, the config
subpackage
contains configuration functionality, etc.
Development
After checking out the repo, run pipenv install --dev
to install dependencies. Using a virtual environment is
recommended.
To install this package onto your local machine, run pip install -e .
.
Useful documentation: PyVISA, pySerial, SciPy, matplotlib, Qt 5
Adding features to the Matisse class
The standard way of interacting with the Matisse outside of the existing API is to use the Matisse.query
method. The
Matisse implements several commands that run asynchronously, like motor movements, so if you want to run these
synchronously, you must do it on your own (like checking the motor status until it's idle again).
Long-running tasks should be executed in a thread that can be started and gracefully stopped from the Matisse class. Currently, fetching a measurement from the wavemeter is a relatively expensive process, so avoid doing this too much if possible.
Adding another wavemeter
Currently I've only implemented an interface for the WaveMaster, but any class will do, as long as it implements the
get_raw_value
and get_wavelength
methods. The get_raw_value
method should return a value representing exactly
what is seen on the wavemeter display (this might not be a measurement), and the get_wavelength
method should always
return a floating-point number representing the latest measurement from the wavemeter. The WaveMaster implementation
blocks the thread until a value is returned from the instrument. Additionally, please ensure any code you write that
communicates with instruments is thread-safe.
Adding features to the GUI
Logging and UI updates should have top priority, so take care not to block the UI thread. Here's the process I use:
- Add a menu action under
setup_menus
and connect it to a Qt slot undersetup_slots
, to be executed on the main thread later. - Do UI updates in this slot, if you need a long-running task that also updates the UI, use a subclass of QThread with a slot (see LoggingThread, StatusUpdateThread for examples).
- For long-running tasks that do not need access to the UI, submit a runnable object to the ControlApplication's
instance of ThreadPoolExecutor. Hold a reference to the Future it gives you and call
add_done_callback
on it, passing inControlApplication.raise_error_from_future
if you want to log errors from that thread. For an example of a method that runs tasks one-by-one on the Matisse, seeControlApplication.run_matisse_task
.
Adding another PLE procedure
Currently I've only implemented a PLE scan for the Andor Shamrock 750. If you'd like to implement your own PLE procedure,
create a separate Python package with a class that has the methods start_ple_scan
, stop_ple_scan
, and
analyze_ple_data
. It's up to you to implement the scanning logic for your particular spectrometer and CCD setup.
Modify the Matisse class __init__
method to use your chosen wavemeter and an instance of your PLE scanning class.
Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/lucis-fluxum/matisse-controller.
License
The package is available as open source under the terms of the MIT License.
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
File details
Details for the file matisse-controller-0.2.0.tar.gz
.
File metadata
- Download URL: matisse-controller-0.2.0.tar.gz
- Upload date:
- Size: 37.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8bea3e41ab8766dc427eea2b00c6d353c4fb61b825af31e530cf1c5ce9f9f43 |
|
MD5 | 8f9e3b60a55fad3e6292cd568e93ffa0 |
|
BLAKE2b-256 | c6b107421e8adec9500df2a166f964e059685a67d359bd049df3c1d3dd9ed528 |
File details
Details for the file matisse_controller-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: matisse_controller-0.2.0-py3-none-any.whl
- Upload date:
- Size: 46.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7cad1bd211110fe0f400b119dad33b729891c41fecfa46e4d2c8f7de8c8842d7 |
|
MD5 | ff75ef0672c073d3db0544446f4ab583 |
|
BLAKE2b-256 | f41c8273c371dd936793ab134afab7031c7168e377ff7c0a8f9d14240ea50bc5 |