Skip to content

Commit

Permalink
added cell surface area and volume
Browse files Browse the repository at this point in the history
  • Loading branch information
brosaplanella committed May 26, 2020
1 parent fda5342 commit 9232fe4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pybamm/parameters/geometric_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
L_y = pybamm.Parameter("Electrode width [m]")
L_z = pybamm.Parameter("Electrode height [m]")
A_cc = L_y * L_z # Area of current collector
A_cooling = pybamm.Parameter("Electrode height [m]")
V_cell = pybamm.Parameter("Electrode height [m]")

# Tab geometry
L_tab_n = pybamm.Parameter("Negative tab width [m]")
Expand Down Expand Up @@ -55,6 +57,8 @@
l_y = L_y / L_z
l_z = L_z / L_z
a_cc = l_y * l_z
a_cooling = A_cooling / (L_z ** 2)
v_cell = V_cell / (L_x * L_z ** 2)

l = L / L_x
delta = L_x / L_z # Aspect ratio
Expand Down

0 comments on commit 9232fe4

Please sign in to comment.