You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The options checking doesn't always work as expected when options are tuples. For example, the following code performs checks if the option "particle size" is "distribution", but "particle size" can be a tuple, in which case the test doesn't run
ifoptions["particle size"] =="distribution":
ifoptions["lithium plating"] !="none":
raiseNotImplementedError(
"Lithium plating submodels do not yet support particle-size ""distributions."
)
The options should be converted to tuples first (where appropriate) and then checks performed on each index.
The text was updated successfully, but these errors were encountered:
The options checking doesn't always work as expected when options are tuples. For example, the following code performs checks if the option "particle size" is "distribution", but "particle size" can be a tuple, in which case the test doesn't run
The options should be converted to tuples first (where appropriate) and then checks performed on each index.
The text was updated successfully, but these errors were encountered: