Communication with Rohde&Schwarz FSUP Signal Source Analyzer
Project description
rsfsup
Python interface to the Rohde & Schwarz FSUP Signal Source Analyzer
Installation
$ pip install rsfsup
Usage
It is possible to configure the instrument and read the trace data with this library. The first example shows reading the spectrum analyzer trace in a context manager.
>>> from rsfsup import CommChannel
>>> with CommChannel("<ip address>") as fsup:
... data = fsup.spectrum.read()
>>> import matplotlib.pyplot as plt
>>> plt.plot(*data)
[<matplotlib.lines.Line2D at ...>]
>>> plt.show()
The next example shows switching to SSA mode to measure phase noise. This one also shows using the CommChannel directly, which is useful in interactive sessions where features of the instrument can be accessed using tab completion.
>>> from rsfsup import CommChannel
>>> cc = CommChannel("<ip address>")
>>> fsup = cc.get_instrument()
>>> fsup.mode = "SSA"
>>> data = fsup.ssa.read()
>>> import matplotlib.pyplot as plt
>>> plt.semilogx(*data)
>>> plt.show()
>>> cc.close()
It is possible to change the resolution bandwith and video bandwidth.
In [1]: from rsfsup import CommChannel
In [2]: cc = CommChannel("<ip address>")
In [3]: fsup = cc.get_instrument()
In [4]: fsup.spectrum.bandwidth.resolution_bandwidth
Out[4]: '50.0 kHz'
In [5]: fsup.spectrum.bandwidth.video_bandwidth
Out[5]: '50.0 kHz'
In [6]: fsup.spectrum.bandwidth.rbw_vbw_ratio
Out[6]: 1.0
In [7]: fsup.spectrum.bandwidth.rbw_vbw_ratio = 0.1
In [8]: fsup.spectrum.bandwidth.rbw_vbw_ratio
Out[8]: 0.1
In [9]: fsup.spectrum.bandwidth.resolution_bandwidth
Out[9]: '50.0 kHz'
In [10]: fsup.spectrum.bandwidth.video_bandwidth
Out[10]: '500.0 kHz'
In [11]: fsup.spectrum.bandwidth.video_bandwidth = "3 MHz"
In [12]: fsup.spectrum.bandwidth.video_bandwidth
Out[12]: '3.0 MHz'
Supported features:
- Spectrum analyzer
- Configuration
- Markers
- Trigger
- Read trace, frequency and time domain
- Phase noise (PLL Cross correlation)
- File system management
Documentation
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 rsfsup-0.1.21.tar.gz
.
File metadata
- Download URL: rsfsup-0.1.21.tar.gz
- Upload date:
- Size: 17.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.7.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8da9d2a46bb80ddc8617db7998e19ac3d78b95e0e69c4749e364b03937425a0 |
|
MD5 | 6a3121c70b20f720fa3f7744dd5c3b60 |
|
BLAKE2b-256 | 91ca5eb204477f0d08ece0d25447c526972ff135d25a441810dca725f4ad8c67 |
File details
Details for the file rsfsup-0.1.21-py3-none-any.whl
.
File metadata
- Download URL: rsfsup-0.1.21-py3-none-any.whl
- Upload date:
- Size: 25.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.7.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a2a21d5a94ae6d68bccd7be4e602bd41b3c8afb2e2ae2ba89c285ce6f86b4dc |
|
MD5 | 53f53ca793db8d5beb27c7c9d41ceea6 |
|
BLAKE2b-256 | 58e288966be0a3ebdebd519fee31087e7823689206d93757bc52fbafb05de970 |