Skip to content

Commit

Permalink
update package compat
Browse files Browse the repository at this point in the history
  • Loading branch information
hexaeder committed Jan 18, 2024
1 parent d623f81 commit 225042f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,18 @@ JSON = "^0.21.0"
Lazy = "^0.14.0, 0.15"
MacroTools = "^0.5.1"
NLsolve = "^4.1.0"
NetworkDynamics = "0.7, 0.8"
NetworkDynamics = "0.8"
OrderedCollections = "1.3"
OrdinaryDiffEq = "^5.17.2, 6"
Parameters = "^0.12.0"
PowerModels = "0.18, 0.19"
PowerModelsACDC = "^0.4, 0.5"
PowerModels = "0.18, 0.19, 0.20"
PowerModelsACDC = "^0.4, 0.5, 0.6, 0.7"
RecipesBase = "0.7.0,0.8.0, 1.0"
SciMLBase = "1, 2"
SciMLBase = "1, 2.0 - 2.10"
SciMLNLSolve = "0.1"
Setfield = "0.4 - 0.8"
Setfield = "1"
StaticArrays = "1"
SteadyStateDiffEq = "^1.5.1"
SteadyStateDiffEq = "1, 2"
julia = "1.6"

[extras]
Expand Down
3 changes: 2 additions & 1 deletion src/operationpoint/operationpoint.jl
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ function _find_operationpoint_steadystate(pg, ic_guess, p0, t0; kwargs...)
op_prob = ODEProblem(ode, ic_guess, (t0, Inf), p0)
sol = solve(
SteadyStateProblem(op_prob),
DynamicSS(Rodas5(); kwargs...),
DynamicSS(Rodas5());
kwargs...
)
if SciMLBase.successful_retcode(sol.retcode)
return State(pg, sol.u)
Expand Down

0 comments on commit 225042f

Please sign in to comment.