Lithium plating during calendar aging in pybamm model

team pybamm,

I am simulating calendar aging in PyBaMM for a cell stored at 95% SOC and 40 °C.

my model setup is as follows,

model = pybamm.lithium_ion.DFN(
{
“cell geometry”: “arbitrary”,
“thermal”: “lumped”,
“SEI”: “solvent-diffusion limited”,
“SEI porosity change”: “true”,

“lithium plating”: “partially reversible”,
“lithium plating porosity change”: “true”, # alias for “SEI porosity change”
“loss of active material”:“stress-driven” ,
“calculate discharge energy”:“true”
},
)

solver = pybamm.IDAKLUSolver()

When lithium plating is enabled in the model, I see a noticeable amount of plated lithium loss. I was expecting plating to be negligible during calendar aging modeling, since there is no applied charging current.

  • Is this expected behavior in PyBaMM, from literature i understand li plating loss to be negligible during storage.

  • Should i switch off plating sub model explicitly for calendar aging modeling (in the pybamm git-hub calendar aging example problem only SEI sub model is activated)

thanks and regards

Thiyaga