Skip to content

Commit

Permalink
Merge pull request e2nIEE#2395 from quant12345/isin
Browse files Browse the repository at this point in the history
Replacing deprecated in1d with isin
  • Loading branch information
vogt31337 authored Sep 19, 2024
2 parents 391a6e1 + 4fd9ab0 commit 0b74d27
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 14 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Change Log

[upcoming release] - 2024-..-..
-------------------------------
- [FIXED] replacing deprecated in1d with isin
- [ADDED] A switch to disable updating the vk and vkr values for trafo3w
- [FIXED] cast the column to the correct type before assigning values
- [FIXED] replacement for deprecated namespaces scipy.sparse.csc and scipy.sparse.csr
Expand Down
6 changes: 3 additions & 3 deletions pandapower/build_branch.py
Original file line number Diff line number Diff line change
Expand Up @@ -973,8 +973,8 @@ def _branches_with_oos_buses(net, ppc, dc=False):
t_bus = line_buses[:, 1]

# determine on which side of the line the oos bus is located
mask_from = np.in1d(f_bus, bus_oos)
mask_to = np.in1d(t_bus, bus_oos)
mask_from = np.isin(f_bus, bus_oos)
mask_to = np.isin(t_bus, bus_oos)

mask_and = mask_to & mask_from
if np.any(mask_and):
Expand All @@ -993,7 +993,7 @@ def _branches_with_oos_buses(net, ppc, dc=False):
ls_info = np.zeros((n_oos_buses_at_lines, 3), dtype=np.int64)
ls_info[:, 0] = mask_to[mask_or] & ~mask_from[mask_or]
ls_info[:, 1] = oos_buses_at_lines
ls_info[:, 2] = np.nonzero(np.in1d(net[line_table].index, line_is_idx[mask_or]))[0]
ls_info[:, 2] = np.nonzero(np.isin(net[line_table].index, line_is_idx[mask_or]))[0]

# ls_info = list(map(mapfunc,
# line_switches["bus"].values,
Expand Down
6 changes: 3 additions & 3 deletions pandapower/pf/run_bfswpf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ def _make_bibc_bcbv(bus, branch, graph):

# if multiple networks get subnetwork branches
if norefs > 1:
branches_sub_mask = (np.in1d(branches_arr[:, 0], buses_ordered_bfs) &
np.in1d(branches_arr[:, 1], buses_ordered_bfs))
branches_sub_mask = (np.isin(branches_arr[:, 0], buses_ordered_bfs) &
np.isin(branches_arr[:, 1], buses_ordered_bfs))
branches = np.sort(branches_arr[branches_sub_mask, :], axis=1)
else:
branches = np.sort(branches_arr, axis=1)
Expand Down Expand Up @@ -252,7 +252,7 @@ def _bfswpf(DLF, bus, gen, branch, baseMVA, Ybus, Sbus, V0, ref, pv, pq, buses_o
Ysh = _makeYsh_bfsw(bus, branch, baseMVA)

# detect generators on PV buses which have status ON
gen_pv = np.in1d(gen[:, GEN_BUS], pv) & (gen[:, GEN_STATUS] > 0)
gen_pv = np.isin(gen[:, GEN_BUS], pv) & (gen[:, GEN_STATUS] > 0)
qg_lim = np.zeros(ngen, dtype=bool) # initialize generators which violated Q limits

Iinj = np.conj(Sbus / V0) - Ysh * V0 # Initial current injections
Expand Down
2 changes: 1 addition & 1 deletion pandapower/shortcircuit/ppc_conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


def _get_is_ppci_bus(net, bus):
is_bus = bus[np.in1d(bus, net._is_elements_final["bus_is_idx"])]
is_bus = bus[np.isin(bus, net._is_elements_final["bus_is_idx"])]
ppci_bus = np.unique(net._pd2ppc_lookups["bus"][is_bus])
return ppci_bus

Expand Down
4 changes: 2 additions & 2 deletions pandapower/shortcircuit/toolbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ def detect_power_station_unit(net, mode="auto",
# Check parallel trafo
if not len(np.intersect1d(connected_bus_at_lv_side, trafo_lv_bus)) == 1:
raise UserWarning("Failure in power station units detection! Parallel trafos on generator detected!")
if np.in1d(required_gen_bus, gen_bus_at_lv_side).sum() > 1:
if np.isin(required_gen_bus, gen_bus_at_lv_side).sum() > 1:
logger.info("More than 1 gen detected at the lv side of a power station trafo! Will not be considered as power station unit")
continue
net.gen.loc[np.in1d(net.gen.bus.values, gen_bus_at_lv_side),
net.gen.loc[np.isin(net.gen.bus.values, gen_bus_at_lv_side),
"power_station_trafo"] = t_ix


Expand Down
4 changes: 2 additions & 2 deletions pandapower/test/loadflow/test_results.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import pandas as pd
import pytest
import numpy as np
from numpy import in1d, isnan, isclose, allclose
from numpy import isin, isnan, isclose, allclose

import pandapower as pp
import pandapower.control
Expand Down Expand Up @@ -815,7 +815,7 @@ def test_shunt_split(result_test_network, v_tol=1e-6, i_tol=1e-6, s_tol=5e-3, l_
def test_open(result_test_network):
net = result_test_network
buses = net.bus[net.bus.zone == "two_open_switches_on_deactive_line"]
lines = net['line'][in1d(net['line'].from_bus, buses.index) | in1d(net['line'].to_bus, buses.index)]
lines = net['line'][isin(net['line'].from_bus, buses.index) | isin(net['line'].to_bus, buses.index)]

assert isnan(net['res_line'].at[lines.index[1], "i_ka"])

Expand Down
6 changes: 3 additions & 3 deletions pandapower/topology/create_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def create_nxgraph(net, respect_switches=True, include_lines=True, include_imped
mask = (net.switch.et.values == "l") & open_sw
if mask.any():
open_lines = net.switch.element.values[mask]
open_lines_mask = np.in1d(indices[:, INDEX], open_lines)
open_lines_mask = np.isin(indices[:, INDEX], open_lines)
in_service &= ~open_lines_mask

parameter[:, WEIGHT] = line.length_km.values
Expand Down Expand Up @@ -221,7 +221,7 @@ def create_nxgraph(net, respect_switches=True, include_lines=True, include_imped
mask = (net.switch.et.values == "t") & open_sw
if mask.any():
open_trafos = net.switch.element.values[mask]
open_trafos_mask = np.in1d(indices[:, INDEX], open_trafos)
open_trafos_mask = np.isin(indices[:, INDEX], open_trafos)
in_service &= ~open_trafos_mask

if calc_branch_impedances:
Expand Down Expand Up @@ -264,7 +264,7 @@ def create_nxgraph(net, respect_switches=True, include_lines=True, include_imped

if respect_switches and len(open_trafo3w):
for BUS in [F_BUS, T_BUS]:
open_switch = np.in1d(indices[:, INDEX] + indices[:, BUS] * 1j,
open_switch = np.isin(indices[:, INDEX] + indices[:, BUS] * 1j,
open_trafo3w)
in_service &= ~open_switch
if calc_branch_impedances:
Expand Down

0 comments on commit 0b74d27

Please sign in to comment.