oxigrid 0.1.2

Pure Rust Energy Systems Simulation & Optimization Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Wind energy modelling: turbine power curves, wake effects, and wind farm layout.
//!
//! - [`turbine`] — Power curve (piecewise-linear), Betz limit (16/27 Cp),
//!   Weibull annual energy production (AEP), log wind profile
//! - [`wake`]    — Jensen top-hat wake model, Frandsen wake model,
//!   square-sum superposition, meteorological wind convention
//! - [`farm`]    — Regular grid wind farm layout with wake-corrected power output
pub mod farm;
pub mod layout_optimizer;
pub mod offshore;
pub mod plant_ops;
pub mod spatial;
pub mod turbine;
pub mod wake;

pub use plant_ops::*;