Skip to content

Commit

Permalink
Merge pull request #3642 from kratman/fix/removeInitialConds
Browse files Browse the repository at this point in the history
Remove initial conditions
  • Loading branch information
valentinsulzer authored Dec 19, 2023
2 parents afedace + f2938b3 commit 85d930a
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions pybamm/solvers/base_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,6 @@ def solve(
model,
t_eval=None,
inputs=None,
initial_conditions=None,
nproc=None,
calculate_sensitivities=False,
):
Expand All @@ -717,14 +716,10 @@ def solve(
inputs : dict or list, optional
A dictionary or list of dictionaries describing any input parameters to
pass to the model when solving
initial_conditions : :class:`pybamm.Symbol`, optional
Initial conditions to use when solving the model. If None (default),
`model.concatenated_initial_conditions` is used. Otherwise, must be a symbol
of size `len(model.rhs) + len(model.algebraic)`.
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_sensitivites : list of str or bool
calculate_sensitivities : list of str or bool
If true, solver calculates sensitivities of all input parameters.
If only a subset of sensitivities are required, can also pass a
list of input parameter names
Expand Down

0 comments on commit 85d930a

Please sign in to comment.