-
Hello there! I was wondering if there is a way to print out or access information on which parameter values are actually used by a given model. For example,
Produce the same result when calling
However, less parameters are required to fully describe the SPM than the DFN. I’m wondering how to see only the parameters that are needed to describe a given model. Any guidance would be very appreciated! Best, Mari |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can do import pybamm
model = pybamm.lithium_ion.DFN()
model.print_parameter_info() to get a list of all the parameters that show up in the model. |
Beta Was this translation helpful? Give feedback.
You can do
to get a list of all the parameters that show up in the model.