Skip to content

Commit ee2dc1c

Browse files
committed
Updated README
1 parent 36a1023 commit ee2dc1c

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,12 @@ voltage_simulated = simulate_model(model, dataset)
9797

9898
## Relevant publications
9999

100-
<a id="1">[1]</a> A.M.A. Sheikh, M.C.F. Donkers, and H.J. Bergveld, “A comprehensive approach to sparse identification of linear parameter-varying models for lithium-ion batteries using improved experimental design,” *Journal of Energy Storage, 2024*.
100+
<a id="1">[1]</a> A.M.A. Sheikh, M.C.F. Donkers, and H.J. Bergveld, “A comprehensive approach to sparse identification of linear parameter-varying models for lithium-ion batteries using improved experimental design,” *Journal of Energy Storage, 2024*. https://doi.org/10.1016/j.est.2024.112581
101101

102-
<a id="2">[2]</a> A.M.A. Sheikh, M.C.F. Donkers, and H.J. Bergveld, “Investigating Identification Input Designs for Modelling Lithium-ion Batteries with Hysteresis using LPV Framework,” *2024 American Control Conference (ACC)*.
102+
<a id="2">[2]</a> A.M.A. Sheikh, M.C.F. Donkers, and H.J. Bergveld, “Investigating Identification Input Designs for Modelling Lithium-ion Batteries with Hysteresis using LPV Framework,” *2024 American Control Conference (ACC)*. https://doi.org/10.23919/ACC60939.2024.10644893
103103

104104
<a id="3">[3]</a> A.M.A. Sheikh, M.C.F. Donkers, and H.J. Bergveld, “Towards temperature-dependent linear
105-
parameter-varying models for lithium-ion batteries
106-
using novel experimental design,” *Submitted to Journal*.
105+
parameter-varying models for lithium-ion batteries using novel experimental design,” *Journal of Energy Storage, 2025*. https://doi.org/10.1016/j.est.2025.116311
107106

108107
## License
109108
PyBatteryID is an open-source library licensed under the BSD-3-Clause license. For more information, see [LICENSE](LICENSE.txt).

examples/1_1_nmc_identification.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "code",
5-
"execution_count": 1,
5+
"execution_count": null,
66
"metadata": {
77
"jupyter": {
88
"is_executing": true
@@ -12,7 +12,7 @@
1212
"source": [
1313
"from pybatteryid import ModelStructure\n",
1414
"from pybatteryid.identification import identify_model\n",
15-
"from pybatteryid.utilities import print_model_details, save_model_to_file, invert_voltage_function, analyze_dataset\n",
15+
"from pybatteryid.utilities import print_model_details, save_model_to_file, analyze_dataset\n",
1616
"from pybatteryid.plotter import plot_time_vs_current\n",
1717
"\n",
1818
"from data import helper"

examples/1_2_nmc_validation.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
"cells": [
33
{
44
"cell_type": "code",
5-
"execution_count": 36,
5+
"execution_count": null,
66
"metadata": {},
77
"outputs": [],
88
"source": [
99
"from sklearn.metrics import root_mean_squared_error, mean_absolute_error\n",
1010
"\n",
1111
"from pybatteryid.simulation import simulate_model\n",
12-
"from pybatteryid.utilities import load_model_from_file, invert_voltage_function\n",
12+
"from pybatteryid.utilities import load_model_from_file\n",
1313
"from pybatteryid.plotter import plot_time_vs_current, plot_time_vs_voltage\n",
1414
"\n",
1515
"from data import helper"

0 commit comments

Comments
 (0)