初始化一下目录结构。

This commit is contained in:
vaio sensen 2024-12-24 22:07:05 +08:00
parent b02a79986a
commit a2311247cf
7 changed files with 91 additions and 1 deletions

View File

@ -1,3 +1,43 @@
# graduate_template # graduate_template
毕业设计模板 毕业设计模板
仓库结构
antenna-design/
├── docs/
│ ├── report # 毕业设计报告
│ ├── theory # 天线理论分析
│ ├── design # 设计过程和步骤
│ ├── simulation # 仿真结果分析
│ └── conclusion # 结论与展望
│ ├── presentation # 毕业设计答辩 PPT 内容
│ └── other # 其他相关文档 (例如文献综述)
├── code/
│ ├── matlab/ # MATLAB 脚本 (如参数优化、数据处理等)
│ └── python/ # Python 脚本 (如自动化流程控制)
├── simulation/
│ ├── cst/
│ │ ├── model1.cst # CST 项目文件
│ │ ├── results/ # CST 仿真结果
│ │ │ ├── s11.csv # S参数数据
│ │ │ ├── radiation_pattern.png # 辐射方向图
│ │ │ └── ...
│ └── hfss/
│ ├── model2.hfss # HFSS 项目文件
│ ├── results/ # HFSS 仿真结果
│ │ ├── gain.csv # 增益数据
│ │ ├── impedance.csv # 阻抗数据
│ │ └── ...
├── fabrication/
│ ├── layout.gerber # 制板文件
│ ├── bom.xlsx # 零件清单
│ └── photos/ # 实物照片
├── results/
│ ├── measurement/ # 测量数据
│ │ ├── s11_measured.csv
│ │ ├── radiation_pattern_measured.png
│ │ └── ...
│ └── analysis # 对比仿真和测量结果分析
└── README # 仓库说明

7
code/README.md Normal file
View File

@ -0,0 +1,7 @@
# code
主要存放自动化相关的代码和工作
├── code/
│ ├── matlab/ # MATLAB 脚本 (如参数优化、数据处理等)
│ └── python/ # Python 脚本 (如自动化流程控制)

13
docs/README.md Normal file
View File

@ -0,0 +1,13 @@
# docs
主要存放毕业设计相关文档毕业要求要注意用latex
├── docs/
│ ├── report # 毕业设计报告
│ ├── theory # 天线理论分析
│ ├── design # 设计过程和步骤
│ ├── simulation # 仿真结果分析
│ └── conclusion # 结论与展望
│ ├── presentation # 毕业设计答辩 PPT 内容
│ └── other # 其他相关文档 (例如文献综述)

6
fabrication/README.md Normal file
View File

@ -0,0 +1,6 @@
# fabrication
├── fabrication/
│ ├── layout.gerber # 制板文件
│ ├── bom.xlsx # 零件清单
│ └── photos/ # 实物照片

8
results/README.md Normal file
View File

@ -0,0 +1,8 @@
# results
├── results/
│ ├── measurement/ # 测量数据
│ │ ├── s11_measured.csv
│ │ ├── radiation_pattern_measured.png
│ │ └── ...
│ └── analysis # 对比仿真和测量结果分析

8
simulation/cst/README.md Normal file
View File

@ -0,0 +1,8 @@
# cst
│ ├── cst/
│ │ ├── model1.cst # CST 项目文件
│ │ ├── results/ # CST 仿真结果
│ │ │ ├── s11.csv # S参数数据
│ │ │ ├── radiation_pattern.png # 辐射方向图
│ │ │ └── ...

View File

@ -0,0 +1,8 @@
# hfss
│ └── hfss/
│ ├── model2.hfss # HFSS 项目文件
│ ├── results/ # HFSS 仿真结果
│ │ ├── gain.csv # 增益数据
│ │ ├── impedance.csv # 阻抗数据
│ │ └── ...