-
Notifications
You must be signed in to change notification settings - Fork 320
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 #6796 from FKMalina/test_ZNLE
Enable Rohde&Schwarz ZNLE VNA
- Loading branch information
Showing
4 changed files
with
87 additions
and
5 deletions.
There are no files selected for viewing
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 @@ | ||
Enabled use of ZNLE R&S VNA by recognizing the model name in RohdeSchwarzZNBBase, and creating an ZNLE## class as an alias |
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
46 changes: 46 additions & 0 deletions
46
src/qcodes/instrument_drivers/rohde_schwarz/_rohde_schwarz_znle.py
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,46 @@ | ||
from .ZNB import RohdeSchwarzZNBBase | ||
|
||
|
||
class RohdeSchwarzZNLE3(RohdeSchwarzZNBBase): | ||
""" | ||
QCoDeS driver for Rohde & Schwarz ZNLE3 | ||
""" | ||
|
||
pass | ||
|
||
|
||
class RohdeSchwarzZNLE4(RohdeSchwarzZNBBase): | ||
""" | ||
QCoDeS driver for Rohde & Schwarz ZNLE4 | ||
""" | ||
|
||
pass | ||
|
||
|
||
class RohdeSchwarzZNLE6(RohdeSchwarzZNBBase): | ||
""" | ||
QCoDeS driver for Rohde & Schwarz ZNLE6 | ||
""" | ||
|
||
pass | ||
|
||
|
||
class RohdeSchwarzZNLE14(RohdeSchwarzZNBBase): | ||
""" | ||
QCoDeS driver for Rohde & Schwarz ZNLE14 | ||
""" | ||
|
||
pass | ||
|
||
|
||
class RohdeSchwarzZNLE18(RohdeSchwarzZNBBase): | ||
""" | ||
QCoDeS driver for Rohde & Schwarz ZNLE18 | ||
""" | ||
|
||
pass |