Skip to content

Commit

Permalink
update base_solver.solve
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiabin-Wang committed Apr 5, 2024
1 parent 3ec4f82 commit bac9294
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pybamm/solvers/base_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -710,16 +710,16 @@ def solve(
The model whose solution to calculate. Must have attributes rhs and
initial_conditions. All calls to solve must pass in the same model or
an error is raised
t_eval : numeric type
The times (in seconds) at which to compute the solution
t_eval : None, list or ndarray, optional
The times (in seconds) at which to compute the solution. Defaults to None.
inputs : dict or list, optional
A dictionary or list of dictionaries describing any input parameters to
pass to the model when solving
nproc : int, optional
Number of processes to use when solving for more than one set of input
parameters. Defaults to value returned by "os.cpu_count()".
calculate_sensitivities : list of str or bool
If true, solver calculates sensitivities of all input parameters.
calculate_sensitivities : list of str or bool, optional
Whether the solver calculates sensitivities of all input parameters. Defaults to False.
If only a subset of sensitivities are required, can also pass a
list of input parameter names
Expand Down

0 comments on commit bac9294

Please sign in to comment.