Skip to main content

surge_network/
lib.rs

1// SPDX-License-Identifier: LicenseRef-PolyForm-Noncommercial-1.0.0
2//! Surge Network — canonical power-system domain model.
3//!
4//! This crate owns the canonical system model used by importers, topology
5//! processing, solvers, and product surfaces. It contains no solver
6//! implementations.
7
8pub mod dynamics;
9pub mod market;
10pub mod network;
11pub mod synthetic;
12pub mod ybus;
13
14pub use network::{AngleReference, DistributedAngleWeight, Network, NetworkError};
15pub use ybus::YBus;