Skip to content
Snippets Groups Projects
Commit 1fd62653 authored by Tobias Hangleiter's avatar Tobias Hangleiter
Browse files

Merge branch 'hotifx/mfli' into 'main'

Fix mfli driver

See merge request !74
parents bc0aea9a 3e7ecb4e
No related branches found
No related tags found
1 merge request!74Fix mfli driver
Checking pipeline status
...@@ -194,7 +194,7 @@ class ZurichInstrumentsMFLIDAQ(_ZurichInstrumentsDevice): ...@@ -194,7 +194,7 @@ class ZurichInstrumentsMFLIDAQ(_ZurichInstrumentsDevice):
``freq = 10e3, f_max = 2e3``, the spectrum will have a ``freq = 10e3, f_max = 2e3``, the spectrum will have a
bandwidth of ``[8e3, 12e3]``. bandwidth of ``[8e3, 12e3]``.
**settings : Mapping **settings : Mapping
Additional settings for data acqusition. Additional settings for data acquisition.
Notes Notes
----- -----
...@@ -237,6 +237,8 @@ class ZurichInstrumentsMFLIDAQ(_ZurichInstrumentsDevice): ...@@ -237,6 +237,8 @@ class ZurichInstrumentsMFLIDAQ(_ZurichInstrumentsDevice):
if filter_order is not None: if filter_order is not None:
self.device.demods[self.demod].order(int(filter_order)) self.device.demods[self.demod].order(int(filter_order))
settings = settings.to_consistent_dict()
# BW 3dB = √(2^(1/n) - 1) / 2πτ # BW 3dB = √(2^(1/n) - 1) / 2πτ
# BW NEP = Γ(n - 1/2) / 4τ √(π)Γ(n) # BW NEP = Γ(n - 1/2) / 4τ √(π)Γ(n)
n = self.device.demods[self.demod].order() n = self.device.demods[self.demod].order()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment