diff --git a/pybamm/models/full_battery_models/lithium_ion/basic_dfn_half_cell.py b/pybamm/models/full_battery_models/lithium_ion/basic_dfn_half_cell.py index c88818725c..9e43d72d2e 100644 --- a/pybamm/models/full_battery_models/lithium_ion/basic_dfn_half_cell.py +++ b/pybamm/models/full_battery_models/lithium_ion/basic_dfn_half_cell.py @@ -396,6 +396,7 @@ def __init__(self, options=None, name="Doyle-Fuller-Newman half cell model"): * param.L_s * param.A_cc, "Current [A]": I, + "Current density [A.m-2]": i_cell * i_typ, "Working electrode potential": phi_s_w, "Working electrode potential [V]": phi_s_w_ref + pot * phi_s_w, "Working electrode open circuit potential": U_w(c_s_surf_w, T), @@ -407,6 +408,8 @@ def __init__(self, options=None, name="Doyle-Fuller-Newman half cell model"): "Voltage drop in the cell [V]": phi_s_w_ref + U_n_ref + pot * vdrop_cell, "Terminal voltage": voltage, "Terminal voltage [V]": voltage_dim, + "Instantaneous power [W.m-2]": i_cell * i_typ * voltage_dim, + "Pore-wall flux [mol.m-2.s-1]": j_w, } @property