This commit is contained in:
fmq
2026-03-19 22:16:23 +08:00
parent 1e30b7bc63
commit 8e21522d2d
41 changed files with 14497 additions and 26 deletions
+14
View File
@@ -2,6 +2,20 @@
//!
//! A progressive refactoring of the TLUSTY stellar atmosphere modeling
//! software from Fortran to Rust.
//!
//! # 模块结构
//!
//! - `state`: 状态管理 (COMMON 块转换)
//! - `constants`: 物理常数和维度参数
//! - `config`: 运行时配置
//! - `atomic`: 原子/离子/能级数据
//! - `model`: 大气模型状态
//! - `arrays`: 大型计算数组
//! - `math`: 数学工具函数
//! - `data`: 静态数据数组
//! - `physics`: 物理计算模块
pub mod data;
pub mod math;
pub mod physics;
pub mod state;