surge-network 0.1.9

Surge network — canonical power-system domain model
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: LicenseRef-PolyForm-Noncommercial-1.0.0
//! Surge Network — canonical power-system domain model.
//!
//! This crate owns the canonical system model used by importers, topology
//! processing, solvers, and product surfaces. It contains no solver
//! implementations.

pub mod dynamics;
pub mod market;
pub mod network;
pub mod synthetic;
pub mod ybus;

pub use network::{AngleReference, DistributedAngleWeight, Network, NetworkError};
pub use ybus::YBus;