-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Execution Graph and Computation Optimization (#27)
**Execution Graph** * Added support to graph-based function evaluation (Thanks @andersonjacob for the [source code](ECSHackWeek/impedance.py#308)) * Added speed benchmark for the graph on documentation * Update compute methods to return impedance value **Computation Optimization** * Vectorized calculation in circuit elements for fast computation **New Circuit Elements** * Added support to nonlinear RC with constant phase element: (RCDQ, RCDQn), and (RCSQ, RCSQn) * Added more tests to cover the changes **Documentation** * Added Release Notes * Improve docstring for clarity **General Code Improvement** * Minor code improvement for better handling * Bumped version to v0.2 * add networkx dependency to environment.yml * Updated requirement.txt and setup.py **Tests** * Added more tests to cover the changes
- Loading branch information
Showing
19 changed files
with
1,824 additions
and
538 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
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 |
---|---|---|
|
@@ -6,4 +6,5 @@ Examples | |
:maxdepth: 1 | ||
:glob: | ||
|
||
examples/nleis_example | ||
examples/nleis_example | ||
examples/graph_example |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
==================== | ||
Release Notes | ||
==================== | ||
|
||
.. Version 0.2 | ||
.. --------------------------- | ||
Version 0.1.1 (2025-01-06) | ||
--------------------------- | ||
This is the official release for the JOSS paper. | ||
|
||
**What's Changed** | ||
|
||
- Documentation updates by @dt-schwartz and @yuefan98 | ||
- Bug fixes by @yuefan98 in https://github.com/yuefan98/nleis.py/pull/25 | ||
|
||
**Full Changelog**: https://github.com/yuefan98/nleis.py/compare/v0.1...v0.1.1 | ||
|
||
Version 0.1 (2024-09-26) | ||
------------------------- | ||
We are excited to announce the first official release of nleis.py! This release marks a significant step forward for nonlinear impedance analysis and will be submitted to JOSS for peer review. | ||
|
||
**Key Features:** | ||
|
||
- Simultaneous fitting and analysis of EIS and 2nd-NLEIS. | ||
- Full support for nonlinear equivalent circuit (nECM) modeling and analysis. | ||
- Various linear and nonlinear circuit element pairs derived from existing literature. | ||
- Seamless integration with impedance.py for expanded impedance analysis capabilities. | ||
|
||
**Improvements:** | ||
|
||
- Comprehensive [documentation](https://nleispy.readthedocs.io/en/latest/), including a Getting Started guide and API reference. | ||
- Improved documentation for supported circuit elements. | ||
- Improved code handling for better performance and readability. | ||
|
||
**Bug Fixes** | ||
|
||
- Initial testing and issue resolution to ensure smooth functionality. | ||
|
||
**New Contributors** | ||
|
||
- Special thanks to @mdmurbach for joining the team and enhancing the package quality. | ||
|
||
**Full Changelog**: https://github.com/yuefan98/nleis.py/commits/v0.1 |
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 |
---|---|---|
|
@@ -16,5 +16,6 @@ dependencies: | |
- tqdm | ||
- tabulate | ||
- impedance | ||
- networkx | ||
|
||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "0.1.1" | ||
__version__ = "0.2" | ||
|
||
try: | ||
from .nleis import * # noqa: F401, F403 | ||
|
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
Oops, something went wrong.