-
I want to know if pybamm can visualize battery's geometric models ,if yes,please tell me how to do. |
Beta Was this translation helpful? Give feedback.
Answered by
rtimms
Nov 1, 2022
Replies: 1 comment
-
At the moment we can only do a planar geometry. You can get the dimensions by doing import pybamm
parameter_values = pybamm.ParameterValues("Chen2020")
Ly = parameter_values["Electrode width [m]"]
Lz = parameter_values["Electrode height [m]"]
Ln = parameter_values["Negative electrode thickness [m]"]
Ls = parameter_values["Separator thickness [m]"]
Lp = parameter_values["Positive electrode thickness [m]"] The electrode cross-sectional area is |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rtimms
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
At the moment we can only do a planar geometry. You can get the dimensions by doing
The electrode cross-sectional area is
Ly*Lz
.