Skip to content
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

Notebook example files added for ECM and folder structure updated. #460

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
f9446ed
Thermal parameters removed for non-thermal Thevenin example, example …
Dibyendu-IITKGP Aug 14, 2024
2dcad41
openpyxl package installation command added in notebook file
Dibyendu-IITKGP Aug 15, 2024
75d66b8
Merge branch 'develop' of https://github.com/pybop-team/PyBOP into 43…
Dibyendu-IITKGP Aug 15, 2024
cbce777
style: pre-commit fixes
pre-commit-ci[bot] Aug 15, 2024
0225270
results of notebooks updated
Dibyendu-IITKGP Aug 15, 2024
ec30ff7
Merge branch '437-add-thermal-thevenin-example-remove-params-from-oth…
Dibyendu-IITKGP Aug 15, 2024
cd4404d
pandas upgraded to remove openpyxl error
Dibyendu-IITKGP Aug 15, 2024
34f5520
import openpyxl added
Dibyendu-IITKGP Aug 15, 2024
6f226bd
style: pre-commit fixes
pre-commit-ci[bot] Aug 15, 2024
6a43506
fix: adds `openpyxl` to nox notebooks session
BradyPlanden Aug 19, 2024
ed4f6a0
Adds parameter specific sigma0, moves initial_state to model.build() …
BradyPlanden Aug 27, 2024
7a9b049
Merge branch 'refs/heads/develop' into 437-add-thermal-thevenin-examp…
BradyPlanden Sep 13, 2024
a26d5ea
updt. noxfile.py with ipywidgets, updt. ecm notebook
BradyPlanden Sep 13, 2024
769734e
examples: update ecm hppc notebook.
BradyPlanden Sep 13, 2024
201451e
multipulse notebook example modified to get rid of test error
Dibyendu-IITKGP Sep 13, 2024
32cf455
style: pre-commit fixes
pre-commit-ci[bot] Sep 13, 2024
261271d
Merge branch 'develop' into 437-add-thermal-thevenin-example-remove-p…
BradyPlanden Sep 16, 2024
f88c5c9
1-single-pulse-circuit-model.ipynb file structure updated
Dibyendu-IITKGP Sep 16, 2024
412bc30
drive cycle current changed
Dibyendu-IITKGP Sep 17, 2024
522845c
style: pre-commit fixes
pre-commit-ci[bot] Sep 17, 2024
23b3731
Adds dependencies to nox notebook-overwrite session, overwrite single…
BradyPlanden Sep 17, 2024
ed457ff
examples: update state of thevenin fitting notebooks
BradyPlanden Sep 17, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

165 changes: 84 additions & 81 deletions examples/notebooks/equivalent_circuit_identification.ipynb

Large diffs are not rendered by default.

550 changes: 550 additions & 0 deletions examples/notebooks/equivalent_circuit_identification_hppc.ipynb

Large diffs are not rendered by default.

595 changes: 595 additions & 0 deletions examples/notebooks/equivalent_circuit_identification_multipulse.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def examples(session):
@nox.session
def notebooks(session):
"""Run the Jupyter notebooks."""
session.install("setuptools", "wheel")
session.install("setuptools", "wheel", "openpyxl", "ipywidgets")
session.install("-e", ".[all,dev]", silent=False)
if PYBOP_SCHEDULED:
session.run("pip", "install", f"pybamm=={PYBAMM_VERSION}", silent=False)
Expand All @@ -86,7 +86,7 @@ def notebooks(session):
@nox.session(name="notebooks-overwrite")
def notebooks_overwrite(session):
"""Run the Jupyter notebooks."""
session.install("setuptools", "wheel")
session.install("setuptools", "wheel", "openpyxl", "ipywidgets")
session.install("-e", ".[all,dev]", silent=False)
if PYBOP_SCHEDULED:
session.run("pip", "install", f"pybamm=={PYBAMM_VERSION}", silent=False)
Expand Down
Loading