-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #807 from johnhornibrook/driver-n5245a
driver/Keysight N5245A
- Loading branch information
Showing
7 changed files
with
879 additions
and
2 deletions.
There are no files selected for viewing
381 changes: 381 additions & 0 deletions
381
docs/examples/driver_examples/Qcodes_example_with_Keysight_Network_Analyzer.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from . import N52xx | ||
|
||
class N5230C(N52xx.PNABase): | ||
def __init__(self, name, address, **kwargs): | ||
super().__init__(name, address, | ||
min_freq=300e3, max_freq=13.5e9, | ||
min_power=-90, max_power=13, | ||
nports=2, | ||
**kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from . import N52xx | ||
|
||
class N5245A(N52xx.PNAxBase): | ||
def __init__(self, name, address, **kwargs): | ||
super().__init__(name, address, | ||
min_freq=10e6, max_freq=50e9, | ||
min_power=-30, max_power=13, | ||
nports=4, | ||
**kwargs) | ||
|
||
options = self.get_options() | ||
if "419" in options: | ||
self._set_power_limits(min_power=-90, max_power=13) | ||
if "080" in options: | ||
self._enable_fom() |
Oops, something went wrong.