Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Project.toml #84

Merged
merged 3 commits into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PowerNetworkMatrices"
uuid = "bed98974-b02a-5e2f-9fe0-a103f5c450dd"
authors = ["Jose Daniel Lara", "Alessandro Francesco Castelli", "Sourabh Dalvi"]
version = "0.10.3"
version = "0.11.0"

[deps]
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Expand All @@ -17,11 +17,11 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
[compat]
DocStringExtensions = "~0.8, ~0.9"
HDF5 = "0.17"
InfrastructureSystems = "^1.20"
InfrastructureSystems = "2"
LinearAlgebra = "1"
MKL = "0.6"
KLU = "^0.6"
Pardiso = "^0.5.5"
PowerSystems = "3"
PowerSystems = "4"
SparseArrays = "1"
julia = "^1.6"
4 changes: 2 additions & 2 deletions test/test_ptdf.jl
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,8 @@ end
r = branches_2[2].r,
x = branches_2[2].x,
b = branches_2[2].b,
rate = branches_2[2].rate,
angle_limits = branches_2[2].angle_limits,
rating = get_rating(branches_2[2]),
angle_limits = get_angle_limits(branches_2[2]),
),
)

Expand Down
4 changes: 2 additions & 2 deletions test/test_radial_branches.jl
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ end

@testset "Radial Branches Large" begin
sys =
build_system(MatpowerTestSystems, "matpower_ACTIVSg10k_sys"; add_forecasts = false)
build_system(MatpowerTestSystems, "matpower_ACTIVSg10k_sys")
rb = RadialNetworkReduction(IncidenceMatrix(sys))
for (k, v) in get_bus_reduction_map(rb)
@test k ∉ v
Expand All @@ -40,7 +40,7 @@ end

@testset "Check reference bus in Radial Branches" begin
for name in ["matpower_ACTIVSg2000_sys", "matpower_ACTIVSg10k_sys"]
sys = build_system(MatpowerTestSystems, name; add_forecasts = false)
sys = build_system(MatpowerTestSystems, name)
a_mat = IncidenceMatrix(sys)
rb = RadialNetworkReduction(IncidenceMatrix(sys))
leaf_buses = Int64[]
Expand Down
Loading