File tree 1 file changed +8
-1
lines changed
pybamm/models/full_battery_models
1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ class BaseBatteryModel(pybamm.BaseModel):
79
79
- "none": :class:`pybamm.sei.NoSEI` (no SEI growth)
80
80
- "constant": :class:`pybamm.sei.Constant` (constant SEI thickness)
81
81
- "reaction limited": :class:`pybamm.sei.ReactionLimited`
82
- - "solvent-diffusion limited": \
82
+ - "solvent-diffusion limited":\
83
83
:class:`pybamm.sei.SolventDiffusionLimited`
84
84
- "electron-migration limited": \
85
85
:class:`pybamm.sei.ElectronMigrationLimited`
@@ -130,6 +130,13 @@ class BaseBatteryModel(pybamm.BaseModel):
130
130
solve an algebraic equation for it. Default is "false", unless "sei film
131
131
resistance" is distributed in which case it is automatically set to
132
132
"true".
133
+ * "operating mode" : str
134
+ Sets the operating mode for the model. Can be "current" (default),
135
+ "voltage" or "power". Alternatively, the operating mode can be
136
+ controlled with an arbitrary function by passing the function directly
137
+ as the option. In this case the function must define the residual of
138
+ an algebraic equation. The applied current will be solved for such
139
+ that the algebraic constraint is satisfied.
133
140
134
141
**Extends:** :class:`pybamm.BaseModel`
135
142
"""
You can’t perform that action at this time.
0 commit comments