Skip to content

Commit

Permalink
update zerodmodel param names
Browse files Browse the repository at this point in the history
  • Loading branch information
ericfell committed Jan 28, 2024
1 parent bef8385 commit 46b0b9c
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions joss-paper/paper.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,16 @@ from experiment import ConstantCurrent

# 1. define symmetric cell and electrolyte parameters
cell = ZeroDModel(
cls_volume=0.005, # liters
ncls_volume=0.050, # liters
cls_start_c_ox=0.01, # molar
cls_start_c_red=0.01, # molar
ncls_start_c_ox=0.01, # molar
ncls_start_c_red=0.01, # molar
ocv_50_soc=0.0, # volts
resistance=0.5, # ohms
k_0_cls=1e-3, # cm/s
k_0_ncls=1e-3, # cm/s
volume_cls=0.005, # liters
volume_ncls=0.050, # liters
c_ox_cls=0.01, # molar
c_red_cls=0.01, # molar
c_ox_ncls=0.01, # molar
c_red_ncls=0.01, # molar
ocv_50_soc=0.0, # volts
resistance=0.5, # ohms
k_0_cls=1e-3, # cm/s
k_0_ncls=1e-3, # cm/s
)

# 2. define cycling protocol
Expand All @@ -109,16 +109,16 @@ from degradation import AutoReduction

# 1. define symmetric cell and electrolyte parameters
cell = ZeroDModel(
cls_volume=0.005, # liters
ncls_volume=0.010, # liters
cls_start_c_ox=0.01, # molar
cls_start_c_red=0.01, # molar
ncls_start_c_ox=0.01, # molar
ncls_start_c_red=0.01, # molar
ocv_50_soc=0.0, # volts
resistance=0.5, # ohms
k_0_cls=1e-3, # cm/s
k_0_ncls=1e-3, # cm/s
volume_cls=0.005, # liters
volume_ncls=0.010, # liters
c_ox_cls=0.01, # molar
c_red_cls=0.01, # molar
c_ox_ncls=0.01, # molar
c_red_ncls=0.01, # molar
ocv_50_soc=0.0, # volts
resistance=0.5, # ohms
k_0_cls=1e-3, # cm/s
k_0_ncls=1e-3, # cm/s
)

# 2. define cycling protocol
Expand Down

0 comments on commit 46b0b9c

Please sign in to comment.