🧩 Chapter 1 β€” Python Baseline Model

AITL Architecture: PID Γ— FSM Γ— LLM

This chapter introduces the foundational Python model of the AITL control architecture.
It also links to all detailed documentation pages of Chapter 1.


Language GitHub Pages 🌐 GitHub πŸ’»
πŸ‡ΊπŸ‡Έ English GitHub Pages EN GitHub Repo EN

⚠ Diagram Rendering Notice

The system pathway diagram above is written in Mermaid.
Due to current limitations of GitHub Pages, Mermaid diagrams are not rendered on this site.

Please refer to the GitHub repository view (linked above) to see the diagram correctly rendered.


πŸ“‚ Documentation Index

File Description
README.md Folder-level introduction
overview.md Conceptual explanation of the architecture
python_model.md Code-level explanation of PID / FSM / controller
fsm.md Canonical state machine rules (RTL input)
api.md Programmatic API reference
getting_started.md How to install and run Chapter1 code

🎯 Objectives of Chapter 1


🧭 FSM Overview

flowchart TD
    PY[Python Baseline Model]
    SPEC[FSM Specification]
    RTL[Verilog RTL]
    OL[OpenLane Flow]
    GDS[GDSII Layout]
    EXT[RC Extraction]
    SPICE[SPICE Simulation]

    PY --> SPEC
    SPEC --> RTL
    RTL --> OL
    OL --> GDS
    GDS --> EXT
    EXT --> SPICE

πŸ”§ Controller Data Flow

flowchart TD
    R[Reference]
    E[Error]
    PID[PID Controller]
    FSM[FSM Supervisor]
    PLANT[Plant]
    Y[Output]
    LLM[LLM Meta Control]

    R --> E
    Y --> E
    E --> PID
    PID --> PLANT
    PLANT --> Y

    FSM --> PID
    FSM --> PLANT

    LLM -. tuning .-> PID
    LLM -. policy .-> FSM

πŸ“ˆ Step Response Simulation


⚠ Fault Scenario Simulation


πŸš€ Next Steps

Continue to:

πŸ‘‰ overview.md
or
πŸ‘‰ python_model.md


Β© AITL Silicon Pathway Project