This commit is contained in:
fmq
2026-03-23 15:45:52 +08:00
parent 5078d6120e
commit 8de90f4ab3
57 changed files with 18250 additions and 149 deletions
+6
View File
@@ -11,11 +11,17 @@
//! - `atomic`: 原子/离子/能级数据
//! - `model`: 大气模型状态
//! - `arrays`: 大型计算数组
//! - `io`: Fortran I/O 兼容层
//! - `reader`: Fortran 格式输入读取
//! - `writer`: Fortran 格式输出
//! - `model`: 模型文件 (fort.7/8)
//! - `input`: 主输入 (fort.5)
//! - `math`: 数学工具函数
//! - `data`: 静态数据数组
//! - `physics`: 物理计算模块
pub mod data;
pub mod io;
pub mod math;
pub mod physics;
pub mod state;