-
Hello everyone, Before in an earlier PyBaMM version (probably 1-2 years old) i used Fickian Diffusion for solving the radial diffusion equation for the concentration in the particles. If yes, then i have another question. I simulate all the time with the typical DFN-model. This includes Fickian-Diffusion in the particle submodel. I even checked it the model class under model.sub_models. I still get a particle concentration overpotential if i plot it with "plot_voltage_components.py". In my assumption this should only happen if i use the MSMR submodel. Am i missing something here? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
By default, we are still using Fickian diffusion where the driving force is gradients in concentration. You have to enable the various MSMR options to use that formulation. In MSMR you just solve for the potential, then you have a function that maps potential to stoichiometry(and therefore concentration). In all cases, we use "particle concentration overpotential" to refer to the difference in the open-circuit potential evaluated using the bulk and surface concentrations respectively, i.e. |
Beta Was this translation helpful? Give feedback.
By default, we are still using Fickian diffusion where the driving force is gradients in concentration. You have to enable the various MSMR options to use that formulation. In MSMR you just solve for the potential, then you have a function that maps potential to stoichiometry(and therefore concentration).
In all cases, we use "particle concentration overpotential" to refer to the difference in the open-circuit potential evaluated using the bulk and surface concentrations respectively, i.e.
U_surf = U_bulk + eta_conc
. At equilibrium, the concentration gradients have relaxed soeta_conc=0
andU_surf = U_bulk
. In older versions of PyBaMM, we didn't explicitly include this as an overpotential…