Skip to content

Commit

Permalink
Merge pull request #20 from pybamm-team/v-0-3-0
Browse files Browse the repository at this point in the history
add changelog
  • Loading branch information
rtimms authored Jan 23, 2023
2 parents 00b9f5b + e6fb679 commit c0754e6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# [v0.3.0](https://github.com/pybamm-team/BPX/releases/tag/v0.3.0)

- Added a missing factor of 2 in the definition of the interfacial current, see the Butler-Volmer equation (2a) in the associated BPX standard document. The interfacial current is now given by $j=2j_0\sinh(F\eta/2/R/T)$ instead of $j=j_0\sinh(F\eta/2/R/T)$.

# [v0.2.0](https://github.com/pybamm-team/BPX/releases/tag/v0.2.0)

- Parsing a BPX json file with additional (unexpected) fields now raises a `ValidationError` ([#16](https://github.com/pybamm-team/BPX/pull/16))
- Fixed a bug in the experiment schema ([#13](https://github.com/pybamm-team/BPX/pull/13))

# [v0.1.0](https://github.com/pybamm-team/BPX/releases/tag/v0.1.0)

Initial release of the Battery Parameter eXchange (BPX) format.
2 changes: 1 addition & 1 deletion bpx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""BPX schema and parsers"""
# flake8: noqa F401

__version__ = "0.2.0"
__version__ = "0.3.0"

from .interpolated_table import InterpolatedTable
from .expression_parser import ExpressionParser
Expand Down

0 comments on commit c0754e6

Please sign in to comment.