-
Notifications
You must be signed in to change notification settings - Fork 398
Add Keysight E5071C VNA to the PyMeasure Builtin Instruments #1154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
Sionwage
wants to merge
55
commits into
pymeasure:master
Choose a base branch
from
Sionwage:Keysight-E5071C
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or 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 reverts commit 9a1df78.
…ling `update_number_of_markers`.
Hey @Sionwage , thanks for the pull request. It is a large change (almost 2000 lines) and you think about including base classes for other VNAs etc. If you find any logical separation for several pull requests, that would be great (e.g. the base class), as it reduces review effort. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Working towards incorporating the Keysight E5071C VNA into PyMeasure's builtin instruments. These commands should be compatible with other Keysight VNA's such as the E5060, E5061, E5070, E5071, and the various revisions of each.
This PR is not complete yet and needs more work to finish in a few areas. Creating the PR to get ready for later integration.
Items needing to be addressed:
I haven't checked but I am 99% sure I need to update the PR to merge recent commits into my fork.
pymeasure/docs
help()
for thedisplay_layout
command in python to know how the display would get split and what options are available.pymeasure/instruments/keysight/keysightE5071C.py
placeholder
for classes called with in the channel class for traces, ports, markers, and reference marker.@property
and@<def name>.setter
method used inTraceCommands
for making sure the trace is active for a channel to apply a measurement format.@property
getter and setter so the functions don't get accidentally overwritten with bad commands utilizing the instrument.MEASUREMENT_FORMAT
it would be nice to be able to part of the value to set it like how SCPI uses just the UPPERCASE letters for the command and can accept the lowercase letters as long as they are correct.pymeasure/tests/instruments/keysight/test_keysightE5071c.py
OPTION_VALUES
fromkeysightE5071c.py
to ensure the spread of parameterized values tested will pass or failpymeasure/tests/instruments/keysight/test_keysightE5071c_with_device.py
sibling VNAs
Any other feedback, suggestions, or required changes needed will be appreciated.