# Technical Document Extraction: Network Topology Interface
This document describes a software interface containing a file directory and a network topology visualization.
## 1. Interface Components
The interface is divided into two primary sections:
* **Left Sidebar:** A file explorer titled "Name".
* **Main Content Area:** A tabbed interface currently displaying the "Topology View".
---
## 2. File Directory (Left Sidebar)
The sidebar lists the project structure, containing folders and root-level files.
### Folders
* `__pycache__`
* `arg_scripts`
* `bash_scripts`
* `config_scripts`
* `data`
* `data_scripts`
* `docs`
* `excel_scripts`
* `gui_scripts`
* `helper_scripts`
* `ini`
* `logs`
* `plot_scripts`
* `sb3_scripts`
* `sim_scripts`
* `src`
* `tests`
* `venv`
* `venvs`
### Files
* `CODE_OF_...` (Highlighted/Selected)
* `CONTRIBUT...`
* `LICENSE`
* `README.md`
* `requirement...`
* `run_gui.py`
* `run_ml_sim.py`
* `run_rl_sim.py`
* `run_sim.py`
---
## 3. Topology View (Main Diagram)
The main area displays a network graph consisting of **24 nodes** (labeled 0 through 23) and their interconnecting edges. The nodes are dark blue circles with white numerical labels.
### Node Adjacency List (Edge Connections)
| Node | Connected To (Adjacent Nodes) |
| :--- | :--- |
| **0** | 1, 5 |
| **1** | 0, 2, 5 |
| **2** | 1, 3, 4, 6 |
| **3** | 2, 4, 6 |
| **4** | 2, 3, 7 |
| **5** | 0, 1, 6, 8, 10 |
| **6** | 2, 3, 5, 7, 8 |
| **7** | 4, 6, 9 |
| **8** | 5, 6, 9, 10, 11 |
| **9** | 7, 8, 12, 13 |
| **10** | 5, 8, 14, 18 |
| **11** | 8, 12, 15 |
| **12** | 9, 11, 13, 16 |
| **13** | 9, 12, 17 |
| **14** | 10, 15, 19 |
| **15** | 11, 14, 16, 21 |
| **16** | 12, 15, 17, 21, 22 |
| **17** | 13, 16, 23 |
| **18** | 10, 19 |
| **19** | 14, 18, 20 |
| **20** | 19, 21 |
| **21** | 15, 16, 20, 22 |
| **22** | 16, 21, 23 |
| **23** | 17, 22 |
### Spatial Layout and Trends
* **Western Cluster (Nodes 0-7):** Densely connected group forming the "head" of the network.
* **Central Backbone (Nodes 8-12):** A vertical-leaning corridor connecting the west and east sections.
* **Eastern Cluster (Nodes 13-23):** A larger, more elongated group.
* **Peripheral Nodes:** Nodes 0, 18, 19, 20, and 23 represent the outer boundaries of the topology.
* **High Centrality Nodes:** Nodes 6, 8, 12, and 16 appear to be major hubs with 5 or more connections each.