diff --git a/Project.toml b/Project.toml index 6df314a9..47825306 100644 --- a/Project.toml +++ b/Project.toml @@ -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] diff --git a/src/operationpoint/operationpoint.jl b/src/operationpoint/operationpoint.jl index c3b25422..3262cdb6 100644 --- a/src/operationpoint/operationpoint.jl +++ b/src/operationpoint/operationpoint.jl @@ -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)