SpectraRust/scripts/migrate_physics_thermodynamics.sh
2026-03-25 18:34:41 +08:00

25 lines
626 B
Bash

#!/bin/bash
# 批量迁移 physics/thermodynamics 模块
cd src/tlusty/math
# 创建目录
mkdir -p physics/thermodynamics
# 移动文件
mv state.rs physics/thermodynamics
mv rhoeos.rs physics/thermodynamics
mv rhonen.rs physics/thermodynamics
mv eldens.rs physics/thermodynamics
mv elcor.rs physics/thermodynamics
mv eldenc.rs physics/thermodynamics
mv entene.rs physics/thermodynamics
mv trmder.rs physics/thermodynamics
mv trmdrt.rs physics/thermodynamics
mv setdrt.rs physics/thermodynamics
mv prsent.rs physics/thermodynamics
mv pgset.rs physics/thermodynamics
mv betah.rs physics/thermodynamics
echo "Done"