We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab2eb9f commit 11e6419Copy full SHA for 11e6419
src/pybamm/expression_tree/operations/serialise.py
@@ -1010,7 +1010,7 @@ def convert_symbol_from_json(
1010
elif symbol_type == "FullBroadcast":
1011
child = Serialise.convert_symbol_from_json(json_data["children"][0])
1012
domains = json_data["domains"]
1013
- return pybamm.FullBroadcast(child, "broadcast", domains)
+ return pybamm.FullBroadcast(child, broadcast_domains=domains)
1014
elif symbol_type == "SecondaryBroadcast":
1015
1016
domain = json_data["broadcast_domain"]
0 commit comments