-
-
Notifications
You must be signed in to change notification settings - Fork 546
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Roadmap area] Model refactoring #3908
Comments
Some additional thoughts on refactoring submodels. Perhaps deserves its own issue (or three) but relevant to the roadmap. Although in general we should move towards encouraging more standalone models, the composability of submodels is still useful. The things that make the submodel structure complex are:
Each of these can be addressed and simplified, although in all cases it's a big undertaking.
import pybamm
class CoupledVariable(pybamm.Variable):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
class Variables(dict):
def __getitem__(self, key):
# if a variable is not found, return a CoupledVariable
if key not in self:
return CoupledVariable(key)
return super().__getitem__(key)
class SubmodelA:
def build(self, variables):
a = pybamm.Variable("a")
b = variables["b"]
self.rhs = {a: -b}
self.initial_conditions = {a: 1}
self.variables = {"a": a}
class SubmodelB:
def build(self, variables):
a = variables["a"]
b = pybamm.Variable("b")
self.rhs = {b: -a}
self.initial_conditions = {b: 1}
self.variables = {"b": b}
model = pybamm.BaseModel()
variables = Variables()
submodel_a = SubmodelA()
submodel_a.build(variables)
variables.update(submodel_a.variables)
model.rhs.update(submodel_a.rhs)
model.initial_conditions.update(submodel_a.initial_conditions)
submodel_b = SubmodelB()
submodel_b.build(variables)
variables.update(submodel_b.variables)
model.rhs.update(submodel_b.rhs)
model.initial_conditions.update(submodel_b.initial_conditions)
model.variables = variables
def replace_coupled_variables(d, variables):
items = list(d.items())
for key, value in items:
d[key] = process_symbol(value, variables)
return d
def process_symbol(symbol, variables):
# replace CoupledVariable with the actual variable from the dictionary
if isinstance(symbol, CoupledVariable):
return variables[symbol.name]
elif isinstance(symbol, pybamm.UnaryOperator):
new_child = process_symbol(symbol.child, variables)
return symbol._unary_new_copy(new_child)
else:
return symbol
replace_coupled_variables(model.rhs, variables)
replace_coupled_variables(model.initial_conditions, variables)
sim = pybamm.Simulation(model)
sim.solve([0, 10])
sim.plot(["a", "b"]) A side benefit of this is that it might make it possible to print the equations of a standalone submodel, which until now has not been possible. |
|
Ok, let's focus on 3 first then |
My thoughts:
|
I wonder if 1 is simplified by having more models but fewer options. E.g. should particle size distributions models be separate models (MPM, MPMe, MPDFN) rather than having a particle size option? Not sure where the distinction is between a new model and an option, or if this is more confusing than what we currently have. It would make documenting easier as we can more easily say “this is the model” rather than “the model is this for option A and this for option B”. |
According to the docs we have 32 different options we can set. Below there is a potential classification of the options to make sense of them. It might also be helpful to think which of these options would be useful in other chemistry models and which not. Some general thoughts:
Classification of optionsOptions that should probably stayAdditional physicsHere I have included additional physics that are common enough that people would want to add on electrochemical models quite often.
Additional stuff we might want to calculate when solvingDoes not change the core of the model but rather how we write/solve it.
Options that should probably goStuff that should be a separate model
Niche/expert options that should be better accessed as a submodel dictionaryIncludes model-specific options (e.g. lead acid, MSMR) which could potentially be set as model specific options (i.e. not defined at BaseBatteryModel).
Options that could be set through the parameter values
Unclear to meHysteresisThere are hysteresis options that not sure where they would fit better, also because for OCP it includes MSMR too.
(Sub)model specific optionsThese are clearly options but that only apply to certain (sub)models.
Other
|
We don't have as many contributors adding models to PyBaMM as we'd like. There are a few reasons for this
We propose "model entry points" as a solution to this. Using entry points, contributors can create models in their own repositories and make them easily available to the rest of the community, without the models having to be added to PyBaMM itself. This will enable a community for battery models that use the PyBaMM infrastructure but are not owned by the PyBaMM team.
Advantages
How to start
Later changes
After this is done, we will be in a much better position to consider fully separating the model code and PDE code
Originally posted by @tinosulzer in #3839 (comment)
The text was updated successfully, but these errors were encountered: