cobre-core 0.15.0

Power system data model — buses, branches, generators, loads, and network topology
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Resolved and scenario data model.
//!
//! Groups the temporal structure ([`temporal`]), the horizon-graph topology built
//! from it ([`horizon`]), per-stage resolved bounds and penalties ([`resolved`]),
//! scenario sources ([`scenario`]), and the supporting parameter ([`parameters`])
//! and penalty-resolution ([`penalty`]) types.

pub mod horizon;
pub mod parameters;
pub mod penalty;
pub mod post_study;
pub mod resolved;
pub mod scenario;
pub mod temporal;