oxigrid 0.1.2

Pure Rust Energy Systems Simulation & Optimization Library
Documentation
1
2
3
4
5
6
7
8
9
10
//! Network data format parsers.
//!
//! | Parser | Module | Format |
//! |--------|--------|--------|
//! | MATPOWER `.m` | [`matpower`]    | MATPOWER Case Format v2 (bus/branch/gen sections) |
//! | IEEE CDF       | [`ieee_cdf`]    | IEEE Common Data Format (bus/branch cards) |
//! | pandapower     | [`pandapower`]  | pandapower JSON (bus/line/trafo/gen tables) |
pub mod ieee_cdf;
pub mod matpower;
pub mod pandapower;