oxigrid 0.1.1

Pure Rust Energy Systems Simulation & Optimization Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Microgrid energy management and market modules.
//!
//! - [`ems`]         — Rule-based EMS: renewables → battery → diesel → load shed
//! - [`islanding`]   — Anti-islanding protection: ROCOF, vector surge, U/O-F/V detection
//! - [`peer_energy`] — Peer-to-peer energy market double-auction clearing
pub mod advanced_ems;
pub mod control_arch;
pub mod ems;
pub mod energy_community;
pub mod island_resync;
pub mod islanding;
pub mod peer_energy;
pub mod sizing;