-
Notifications
You must be signed in to change notification settings - Fork 129
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
FEAT: VSin, ISin Sources added to Maxwell Circuit Primitives #5283
base: main
Are you sure you want to change the base?
Conversation
Create Page and Select Page added to Circuit Primitives
Thanks for opening a Pull Request. If you want to perform a review write a comment saying: @ansys-reviewer-bot review |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #5283 +/- ##
==========================================
- Coverage 84.59% 83.32% -1.28%
==========================================
Files 142 142
Lines 59941 59980 +39
==========================================
- Hits 50710 49980 -730
- Misses 9231 10000 +769
|
Create Page and Select Page added to Circuit Primitives
…s' into 5282-Add-Missing-Circuit-Elements # Conflicts: # src/ansys/aedt/core/modeler/circuits/primitives_circuit.py
Create Page and Select Page added to Circuit Primitives
for more information, see https://pre-commit.ci
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the changes, could you address the comments and add tests ?
src/ansys/aedt/core/modeler/circuits/primitives_maxwell_circuit.py
Outdated
Show resolved
Hide resolved
src/ansys/aedt/core/modeler/circuits/primitives_maxwell_circuit.py
Outdated
Show resolved
Hide resolved
src/ansys/aedt/core/modeler/circuits/primitives_maxwell_circuit.py
Outdated
Show resolved
Hide resolved
src/ansys/aedt/core/modeler/circuits/primitives_maxwell_circuit.py
Outdated
Show resolved
Hide resolved
Create Page added to Circuit Primitives
for more information, see https://pre-commit.ci
@DaveTwyman please install pre-commit in your venv because I see that every time you push a commit it automatically triggers the auto fixes pre-commit: Also remember to update and merge main in your branch from time to time. |
@gmalinve Good point about the pre-commit, I see it's installed on my machine. I've just updated it too. I guess the issue is I need to start using it before each push. I believe I'm updating main before each push from PyCharm, but let me know if you can see evidence something is wrong here. Thanks again as always |
@DaveTwyman If it is installed on your machine then it shouldn't let you commit. The precommit should trigger the problems locally before allowing you to make any commit. |
Ok, understood, I'm just reading up on how to set this up now |
@DaveTwyman you need to add unit tests now :) |
Hello @SMoraisAnsys , I've added the last unit test, and method needed to support that test (plus another unit test for the new method). So all the new methods now have supporting unit tests. It seems that the test coverage codecov is very low, do you think this is because of making multiple single line changes 'id' to 'component' or issues elsewhere? |
Try to run your test locally and see if it is correctly covered. It might be a codecov issue (but I doubt about it). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@DaveTwyman please review and fix all the comments.
You created unit tests that don't run at all. Please test, run and debug locally before pushing commits to your PR.
src/ansys/aedt/core/modeler/circuits/primitives_maxwell_circuit.py
Outdated
Show resolved
Hide resolved
src/ansys/aedt/core/modeler/circuits/primitives_maxwell_circuit.py
Outdated
Show resolved
Hide resolved
Co-authored-by: gmalinve <103059376+gmalinve@users.noreply.github.com>
Co-authored-by: gmalinve <103059376+gmalinve@users.noreply.github.com>
Co-authored-by: gmalinve <103059376+gmalinve@users.noreply.github.com>
Co-authored-by: gmalinve <103059376+gmalinve@users.noreply.github.com>
Co-authored-by: gmalinve <103059376+gmalinve@users.noreply.github.com>
…uld not be in circuit.py. -Replaced set_property method with parameter method. -Added example in docstring for create_i_sin and create_v_sin. -Added more checks for create_voltage_source and create_current_source name types in unit tests. -Moved create_page and get_num_pages unit tests to test_35_MaxwellCircuit.py -Added assert not to two of the unit tests
…Missing-Circuit-Elements
# Conflicts: # tests/system/general/test_21_Circuit.py
For more information, see https://pre-commit.ci
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be better to add the get number pages feature as a property, could you update the code ?
Also, the added code in primitives_circuit.py
is not tested, could you test it ?
I left an extra minor comment.
Unit test 12 no longer needed. Added nb_pages after each page is created in unit test 11 to catch cases where pages are not created.
…ed 'nb_pages'. Change made for circuit so implementation is the same as maxwellcircuit.
Hey @DaveTwyman, I'm not sure about the status of this PR. Do you want to add VSin and ISin on top of the pages features or should this be splited into two PRs and some commits got added inadvertently ? |
Create Page and Select Page added to Circuit Primitives