Spectroscopy lock application using RedPitaya
Project description
Spectroscopy locking of lasers using RedPitaya (STEMlab 125-14) that just works. Linien aims to follow the UNIX philosophy of doing one thing very well. It is built with Python and Migen and is based on RED PID.
Features
All inclusive: Modulation (up to 50 MHz), demodulation, filtering and servo implemented on the FPGA.
Client-server architecture: Autonomous operation on RedPitaya. One or multiple GUI clients can connect to the server.
Autolock: Click and drag over a line, and linien will automatically approach it and lock to it.
Lock detection: linien is capable of detecting loss of lock.
Automatic relocking: in that case, it can relock automatically using the autolock.
Remote-controllable: The client libraries can be used to control or monitor the spectroscopy lock with python.
Combined FMS+MTS: Supports dual-channel spectroscopy that can be used to implement combined FMS+MTS
Logging: Use linien-influxdb to log the lock status to influxdb.
TTL status: Outputs the lock status via TTL
Getting started
Linien runs on Windows and Linux. It is written for python 3 and can be installed using python’s package manager pip:
pip3 install linien
Run the application by calling
linien
If this doesn’t work, your local bin directory (e.g. ~/.local/bin) is probably missing in your PATH. Alternatively you can open linien using python:
from linien.client.client import run_application
run_application()
Then, you can enter your RedPitaya’s credentials and connect. If you agree, linien’s server component is automatically installed.
Physical setup
Scriptable interface
Linien running on RedPitaya can not only be controlled using the GUI but also by python scripts.
from linien.client.connection import BaseClient, MHz, Vpp
c = BaseClient(host, 18862, False)
# read out the modulation frequency
print(c.parameters.modulation_frequency.value / MHz)
# set modulation amplitude
c.parameters.modulation_amplitude.value = 1 * Vpp
# in the line above, we set a parameter. This is not written directly to the
# FPGA, though. In order to do this, we have to call write_data():
c.connection.root.write_data()
# plot control and error signal
import pickle
from matplotlib import pyplot as plt
plot_data = pickle.loads(c.parameters.to_plot.value)
# depending on the status (locked / unlocked), different signals are available
print(plot_data.keys())
# if unlocked, signal1 and signal2 contain the error signal of channel 1 and 2
# if the laser is locked, they contain error signal and control signal.
if c.parameters.locked.value:
plt.plot(plot_data['control_signal'], label='control')
plt.plot(plot_data['error_signal'], label='error')
else:
plt.plot(plot_data['error_signal_1'], label='error 1')
plt.plot(plot_data['error_signal_2'], label='error 2')
plt.legend()
plt.show()
For a full list of parameters that can be controlled or accessed have a look at parameters.py.
Development
As linien uses a git submodule, you should check it out like this:
git clone https://github.com/hermitdemschoenenleben/linien.git --recursive
To simplify development of the server component, its source code is automatically uploaded to the RedPitaya. For that, edit the VERSION file and replace it’s content with dev. Check that no server is running on the RedPitaya and start the client. Your development code should be uploaded to /linien and the linien server is started from that directory.
Fake server for testing the GUI:
python3 server/server.py --fake
Run server locally and control:
python3 server/server.py –remote-rp=root:password@rp-f0xxxx.local
For this, acquisition_process.py has to be started on the RedPitaya.
In order to build the FPGA image, use scripts/build_gateware.sh.
See Also
RedPID: the basis of linien
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 linien-0.0.19.tar.gz
.
File metadata
- Download URL: linien-0.0.19.tar.gz
- Upload date:
- Size: 352.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d349bfa5245f3b2be0b68ec1df66c01d0cce55a1626388f6c0630d276c0df76 |
|
MD5 | 30f6e009d18ac0a716e790cab09b303a |
|
BLAKE2b-256 | daa2726ee90ff52a138fe0a6c299db5627f888b65e651fcf1a59849b8519940b |
File details
Details for the file linien-0.0.19-py3-none-any.whl
.
File metadata
- Download URL: linien-0.0.19-py3-none-any.whl
- Upload date:
- Size: 53.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.1 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ac80ddacbe5da31cc19b67b04fd9573ace05f51bf7ef6cddc87302721cc1aa6 |
|
MD5 | f013b8a8402f83d65381e761596c8043 |
|
BLAKE2b-256 | a411214e365494759eb4d116779bc55a4ad796033271b2d1f428c43f92b9c731 |