tlusty重构完成

This commit is contained in:
fmq
2026-03-25 13:31:23 +08:00
parent b71930cf8e
commit f08c328b70
342 changed files with 992 additions and 670 deletions
+10 -19
View File
@@ -5,23 +5,14 @@
//!
//! # 模块结构
//!
//! - `state`: 状态管理 (COMMON 块转换)
//! - `constants`: 物理常数和维度参数
//! - `config`: 运行时配置
//! - `atomic`: 原子/离子/能级数据
//! - `model`: 大气模型状态
//! - `arrays`: 大型计算数组
//! - `io`: Fortran I/O 兼容层
//! - `reader`: Fortran 格式输入读取
//! - `writer`: Fortran 格式输出
//! - `model`: 模型文件 (fort.7/8)
//! - `input`: 主输入 (fort.5)
//! - `math`: 数学工具函数
//! - `data`: 静态数据数组
//! - `physics`: 物理计算模块
//! - `tlusty`: TLUSTY 专用模块
//! - `data`: 静态数据数组
//! - `io`: I/O 模块
//! - `math`: 数学函数
//! - `physics`: 物理计算
//! - `state`: 状态管理 (COMMON 块)
//! - `synspec`: SYNSPEC 专用模块
//! - `math`: 数学函数
pub mod data;
pub mod io;
pub mod math;
pub mod physics;
pub mod state;
pub mod tlusty;
pub mod synspec;