cobre-core 0.2.0

Power system data model — buses, branches, generators, loads, and network topology
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Topology representations for cascade and transmission network structures.
//!
//! The topology sub-modules define resolved, validated representations of the
//! hydro cascade chain and the electrical transmission network. Both are built
//! during case loading and stored on the [`crate::system`] struct.

pub mod cascade;
pub mod network;

pub use cascade::CascadeTopology;
pub use network::{BusGenerators, BusLineConnection, BusLoads, NetworkTopology};