andam 0.1.2

A comprehensive Rust library for cosmological calculations, visualizations and simulations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Early universe physics
//!
//! This module implements Big Bang Nucleosynthesis (BBN) calculations including:
//! - Nuclear reaction networks
//! - Neutron-proton freeze-out
//! - Light element abundance predictions
//! - Baryon density constraints

pub mod reactions;
pub mod network;
pub mod nucleosynthesis;
pub mod freeze_out;

pub use reactions::*;
pub use network::*;
pub use nucleosynthesis::*;
pub use freeze_out::*;