e2nIEE / pandapower
Showing 2 of 2 files from the diff.

@@ -168,6 +168,9 @@
Loading
168 168
            net, boundary_buses, all_internal_buses, all_external_buses,
169 169
            show_computing_time, calc_volt_angles=calc_volt_angles, runpp_fct=runpp_fct)
170 170
    net_zpbn = net_external
171 +
    # --- remove buses without power flow results in net_eq
172 +
    # pp.drop_buses(net_zpbn, net_zpbn.res_bus.index[net_zpbn.res_bus.vm_pu.isnull()])
173 +
    
171 174
    Z, S, v, limits = calc_zpbn_parameters(net_zpbn, boundary_buses, all_external_buses)
172 175
    # --- remove the original load, sgen and gen in exteranl area,
173 176
    #     and creat new buses and impedance

@@ -366,11 +366,7 @@
Loading
366 366
    if kwargs.get("drop_boundary_buses", True):
367 367
        pp.drop_elements_at_buses(net_internal, boundary_buses_inclusive_bswitch,
368 368
                                  branch_elements=False)
369 -
370 -
    # --- remove buses without power flow results in net_eq
371 -
    pp.drop_buses(net_eq, net_eq.res_bus.index[net_eq.res_bus.vm_pu.isnull()])
372 -
373 -
    
369 +
  
374 370
    # --- merge equivalent external net and internal net
375 371
    merged_net = pp.merge_nets(net_internal, net_eq, validate=kwargs.pop("validate", False),
376 372
                               retain_original_indices_in_net1=retain_original_internal_indices,
Files Coverage
pandapower 76.49%
setup.py 0.00%
Project Totals (189 files) 76.45%

No yaml found.

Create your codecov.yml to customize your Codecov experience

Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file. The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files. The size and color of each slice is representing the number of statements and the coverage, respectively.
Grid
Each block represents a single file in the project. The size and color of each block is represented by the number of statements and the coverage, respectively.
Loading