Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 530 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 530 Bytes

psdm2pp

This is a work-in-progress tool for converting PSDM to pandapower grid models.

Limitations

  • Currently only basic grid model conversion supported
  • No switch conversion implemented yet

Usage

from pypsdm import RawGridContainer
from psdm2pp.grid import convert_grid

psdm_path = "/my/psdm_grid/path"
psdm_grid = RawGridContainer.from_csv(psdm_path)
pp_grid, uuid_idx_maps = convert_grid(psdm_grid)