Source code for pybamm.models.full_battery_models.lithium_ion.Yang2017
import pybamm
from .dfn import DFN
[docs]
class Yang2017(DFN):
def __init__(self, options=None, name="Yang2017", build=True):
options = {
"SEI": ("ec reaction limited", "none"),
"SEI film resistance": "distributed",
"SEI porosity change": "true",
"lithium plating": ("irreversible", "none"),
"lithium plating porosity change": "true",
}
super().__init__(options=options, name=name)
pybamm.citations.register("Yang2017")