🎓 Samizo-AITL Portal

A physical-first engineering framework
that integrates devices, control, and intelligence
through a unified causal loop back to the physical world

Japanese Version GitHub Zenn


▶ Overview

A short slide deck summarizes
the design philosophy and overall structure of Samizo-AITL.

Readers new to the portal are encouraged to start here.

Overview Slides


🚀 What This Portal Provides

Samizo-AITL is a technical archive structured around
a physical-first design methodology.

The portal provides:

This is not a tutorial collection.
It is an archive intended to support design-level reasoning.


🎯 Intended Audience

This portal is intended for engineers and researchers who:

⚠️ This is not an introductory site.
It is a reference archive for design-oriented engineering work.


🧭 What Is Samizo-AITL?

The Samizo-AITL Portal, created by Shinichi Samizo,
reorganizes semiconductor devices, MEMS, and control engineering
around a shared physical-first design framework.

Rather than treating technologies in isolation,
systems are presented along a single causal chain:

Physics → Structure → Devices → Process → Models → Systems → Control → Intelligence

This structure enables readers to trace
design rationale and constraints, not only implementation details.


🧩 AITL Structure Map (Overall Architecture)

flowchart TB
  %% ===== Physical Layer =====
  subgraph PL["Physical Layer"]
    P["Physical / Devices / MEMS"]
  end

  %% ===== Control Layer =====
  subgraph CL["Control Layer"]
    M["Models"]
    C["Control Theory"]
    R["Real-time PID"]
  end

  %% ===== Supervisory & Design Layer =====
  subgraph SL["Supervisory & Design Layer"]
    S["FSM Supervisor"]
    A["Adaptive Assist (NN / RL, bounded)"]
    I["LLM (Design-time only)"]
  end

  %% ===== Flow =====
  P --> M --> C --> R --> S
  S --> A
  S --> I

  %% ===== Style =====
  style PL fill:#e6f2ff,stroke:#1f4ed8,stroke-width:2px
  style CL fill:#e9ffe6,stroke:#1f8b24,stroke-width:2px
  style SL fill:#fff3e6,stroke:#d86b1f,stroke-width:2px

  style I stroke-dasharray:5 5

AITL (Architecture for Integrated Technology Logic) is a system design architecture
centered on a one-directional causal structure:

Physical → Control → Intelligence

LLMs are used only at design time (non-real-time)
and do not directly intervene in real-time control loops.

Intelligence is applied to fully and correctly exploit physical models
— that is the core philosophy of AITL.


🔍 For Reviewers, Evaluators, and Potential Collaborators

This portal organizes a design-oriented engineering architecture
that integrates physics-based models, control theory, and AI,
with explicit separation of responsibilities.

AI is explicitly excluded from real-time control loops.
The architecture therefore targets engineering systems that emphasize
safety, reproducibility, and objective evaluability.


🗂 Directory Overview (Structural Map)

The directory structure itself represents the design philosophy.

Samizo-AITL/
├─ 01_DevEnv/        Environment & Reproducibility
│                   (VSCode / Python / Toolchain)
│
├─ 02_CodeGen/       Implementation & Control
│   ├─ PID           Real-time control (stability, V–I control)
│   ├─ FSM           Supervision, state transitions, mode management
│   ├─ NN_RL         Bounded real-time adaptive assistance
│   └─ LLM           Design supervision & redesign (non-real-time)
│
├─ 03_Docs/          Understanding, Education, Design Philosophy
│   ├─ Edusemi-v4x
│   ├─ EduController
│   └─ Edusemi-Plus
│
└─ 04_Archives/      PoC, history, design assets

Recommended entry order:
Architecture → Physics → Control → Intelligence


🗺 How to Navigate This Portal

  1. Architecture & philosophy
    → Physical-first engineering and AITL concepts
  2. Main Core (physical foundations)
    → Semiconductor devices, MEMS, physical constraints
  3. Applied Layer (control & intelligence)
    → PID, FSM, and LLM roles
  4. Proof-of-concept implementations
    → Verification through working systems

This order avoids tool-driven or fragmented understanding.


📝 Essays / Design Philosophy (Zenn)

Essays on design philosophy, physical-first engineering, and the AITL architecture are published on Zenn.

Zenn Articles


💠 Main Core — Foundational Repositories

The Main Core forms a coherent technical backbone
covering semiconductor technology from physics to system-level constraints.


1. Edusemi-v4x

A systematic curriculum covering semiconductor devices and processes:

Site Repo


🔹 Special Chapter: SystemDK (System Design Kit)

A special chapter that builds upon physics-based device and circuit knowledge and extends it into
implementation and system-level integration design, including SI / PI / thermal / mechanical stress / EMI considerations.

👉 Positioned as a bridge from “physics” to “system integration” within Edusemi-v4x.

Site Repo


2. SemiDevKit

An implementation-oriented development kit bridging semiconductor device theory and practical design workflows:

👉 Transforming physical device understanding into executable design flows.

Site Repo

■ Device Modeling Example (Short Channel Effect)

NMOS Vg–Id characteristics (Linear region) modeled with BSIM4,
showing channel-length (L) dependent behavior.
The increase in drain current and slope variation with reduced L
clearly reflects Short Channel Effects, including
threshold voltage roll-off and mobility degradation.


3. Edusemi-Plus

Extended materials connecting semiconductor fundamentals with surrounding domains:

Site Repo


🕰 Legacy Technology (Failure & Recovery Archive)

Legacy Technology is not a retrospective of obsolete processes.
It is a collection of causal case studies documenting how physical mechanisms, process integration, and usage conditions directly shaped failures, yield recovery, and business decisions.

These materials explain why AI and control architectures cannot ignore physical reality,
based on real-world chains of manufacturing, testing, and market decision-making.

Site Repo

▶ Representative Cases

🔐 Note on Confidentiality
This archive is based exclusively on semiconductor technologies
developed more than 20 years ago.

It contains no proprietary process recipes, design rules, or operational know-how applicable to current manufacturing.
The focus is on structural failure-and-decision patterns, not secrets.


4. openlane2-sram|SRAM Hard Macro Integration (Physical Design Proof)

This project demonstrates a complete RTL → GDS flow using OpenLane2 (v2)
by integrating an SRAM hard macro into a macro-aware physical design.

The focus is not SRAM design itself, but realistic hard-macro integration
within an OpenLane2-based physical implementation flow.

Site Repo

🔎 Layout Evidence (GDS)

Figure 1: SRAM Macro Block-Level View

SRAM hard macro block-level layout integrated using OpenLane2

Figure 2: Standard-Cell-Level View Around the SRAM Macro

Standard-cell placement and routing around the SRAM hard macro

Note:
The SRAM is integrated as a fixed hard macro using abstract views (LEF/GDS).
Its internal transistor-level layout is intentionally not visible, which is consistent with standard SoC physical design practice.


🎛 Applied Layer — Control & Intelligence

This layer explores how physical foundations are applied to
dynamic systems and control problems.

Classical control (PID, FSM) remains the primary control mechanism,
while AI/LLMs are treated as architectural support tools, not replacements.


🧭 Control Architecture Concepts

Core control-architecture concepts that separate runtime operation from design-time recovery.
Both concepts explicitly assume that AI does not replace controllers.

Concept Role Links
Envelope Control Runtime enforcement of safe operating envelopes under uncertainty 🔗 Open | 🔧 Repo
Design Recovery Control Offline recovery of violated control design assumptions 🔗 Open | 🔧 Repo

Relationship (non-overlapping):

These concepts are complementary, not alternatives.


▶ Control Playground (Time Response Demo)

This demo visualizes the time response of a fixed-gain PID controller under colored, adversarial disturbances.

Control performance is not explained by words.
The waveform tells the whole story.


5. EduController

An educational resource focused on control fundamentals:

Site Repo


6. AITL-Controller-A-Type

A minimal experimental controller implemented in Python to explore a strict separation of responsibilities in control system design:

This project is a thinking framework for control architecture design,
not a proposal for a new control algorithm
and not an autonomous control system.

Site Repo

AITL system response under disturbance (PID-controlled, FSM-supervised, bounded adaptive assist, design updated offline)
System response under disturbance: control by PID, supervision by FSM, bounded adaptive assistance when permitted, and design-time redesign triggered by LLM only when required.

▶ Interactive Verification (Design-Side Playground)

The figure above shows an idealized AITL response,
derived from logged simulation and analysis results.

For hands-on exploration of why this layered separation is necessary,
and where adaptation must stop and design reconsideration begins,
please refer to the interactive playground below.

👉 AITL Control Playground (Interactive)
Playground

This playground is intentionally separated from this PoC page
to preserve the clarity of the minimal AITL structure and responsibility separation.


7. V–I Control ASIC on SKY130

A hands-on educational control ASIC demonstrating a complete flow from
control theory to silicon using PID + FSM.

Site Repo


Logic-to-Physical Consistency (OpenLane v1)

This project demonstrates that the V–I control logic (PID + FSM)
is functionally correct at the RTL level and can be carried through
to physical implementation using OpenLane v1.

By validating the logical behavior first and then mapping it to silicon,
the project clarifies how control theory is concretely realized in an ASIC.


Logical Verification (GTKWave)

RTL-level functional verification using GTKWave.
The waveform confirms correct PID + FSM behavior at the control interface.
Internal macro implementations are intentionally treated as black boxes.


Physical Implementation (OpenLane v1)

Standard-cell placement and routing snapshot generated by OpenLane v1.
This figure is used for flow inspection, not as a final GDS deliverable.


Note:
This project uses OpenLane v1 as a baseline RTL-to-GDS implementation.
Macro-aware and more advanced physical design examples are provided separately
using OpenLane v2.


🔔 Ongoing Work: AI Control Safety Package

We are preparing AI Control Safety Package,
a practical design and review package for introducing
AI / LLM-based control systems safely and responsibly.

This is a practice-oriented project derived from
the control architecture concepts presented in this portal.

Site Repo


⚙️ MEMS — Where Abstraction Meets Reality

A boundary domain where
abstract models are tested against real physical structures,
revealing the limits of simplification and guiding design decisions toward MEMS.


8. mems-ana

Pre-FEM MEMS Structural Exploration Tool

A lightweight analysis tool for early-stage MEMS structural exploration before full FEM simulation.

This tool focuses on capturing dominant deformation modes, scaling trends, and dynamic behavior using simplified analytical and numerical models, enabling rapid design-space exploration without the overhead of full multiphysics solvers.

Site Repo


9. Inkjet Printing — Design Trade-off Models

Minimal physical models that visualize fundamental trade-offs in inkjet printing systems, such as:

These models are implemented as simple Python simulations, intentionally avoiding excessive detail in order to make causal relationships and trade-off structures explicit.

This project serves as a domain-specific example of how physical constraints shape system-level design choices.

Site Repo


10. inkjet-timing

A design and educational demo that visualizes time-domain causality across electrical, mechanical, and fluid domains in a piezoelectric inkjet system.

By explicitly aligning drive waveforms, structural response, and droplet dynamics along a common time axis, this tool highlights what happens when — and why in coupled multiphysics systems.

Site Repo


11. Inkjet Driver IC — Physical Interface Abstraction

A design node that defines the physical boundary where an inkjet driver IC interfaces with the MEMS / fluid domain,
explicitly including PDK and process-level constraints.

This project is based on the GF180 PDK, where
high-voltage (HV) MOS devices required for inkjet driving are manually designed at the layout level.
(This is fundamentally different from sky130-style designs based on standard cells and automatic synthesis.)

What this node defines

👉 A design interface that defines the responsibility boundary between physical models and IC design.

Site Repo


HVMOS Layout as a Physical Interface

The following figure shows a representative high-voltage MOS (HVMOS) layout that serves as the physical interface between the inkjet driver IC and the MEMS / fluid domain.

Rather than a single device in isolation, this example represents the minimum structure actually exposed by the IC: the HV_SW_UNIT, consisting of the HVMOS device, DNWELL isolation, and a continuous guard ring.

This layout visually defines:

HV_SW_UNIT GDS as the Physical Interface of an Inkjet Driver IC


12. Full Code Mechanical Design

A methodology for defining mechanical and MEMS structures as executable code rather than GUI-based CAD operations.

In this approach, CAD is treated not as an authoring tool, but as an execution engine for physical structure and design intent.

This methodology enables mechanical and MEMS structures to be reproducible, reviewable, and automatable, and allows them to serve as explicit physical boundary definitions for higher-level control and AITL architectures.

👉 Full Code Mechanical Design provides the physical-structure definition layer upon which Samizo-AITL builds its control and intelligence architectures.

Site Repo


🎞 AITL Animation Demos

A collection of animation demos that visualize AITL control architectures and
physical, device-level, and multiphysics behaviors over time.

These demos are intended to provide a visual understanding of system structure and behavior
prior to engaging with equations or code.

Site Repo


🎞 AITL Control Flow Demo

This demo illustrates how the AITL control architecture operates along the time axis,
where PID × FSM form the real-time control core,
NN / RL provide bounded real-time assistance,
and LLM is isolated as a non-real-time design-support layer.


🔁 Layer roles (summary)


📉 Demo sequence

  1. Normal operation: PID tracking, FSM monitoring
  2. Disturbance: error growth detected by FSM
  3. Conditional adaptation: FSM permits bounded NN / RL assistance
  4. Design review (if required): FSM invokes LLM
  5. Recovery: PID re-establishes tracking, FSM returns to stable

🎯 What this demo demonstrates

This demo confirms that, in AITL:

The architecture preserves control stability and accountability
through explicit responsibility separation.



📄 Related Manuscript (Preprint)

The design philosophy and structural architecture of Samizo-AITL
are systematically described in the following manuscript (preprint).

A Web-Based Design Knowledge Hub for Reusable Engineering Education
Shinichi Samizo

👉 Read the manuscript (PDF)

This manuscript presents a physical-first design knowledge architecture
that integrates devices, control theory, and intelligent systems
through a unified causal structure.

This document is a preprint and has not yet been formally published
or presented at any academic conference.


🕘 Update Log

Chronological record of site and repository updates.

📄 View update history


👤 Author

Shinichi Samizo
Independent Semiconductor Researcher


🔐 License & Terms of Use (Hybrid Model)

Hybrid License

This portal adopts a hybrid licensing model.

📌 Item License Description
💻 Source Code MIT License Free to use, modify, and redistribute
📄 Text Materials CC BY 4.0 or CC BY-SA 4.0 Attribution required; share-alike applies for BY-SA
📊 Figures & Diagrams CC BY-NC 4.0 Non-commercial use only
🔗 External References Follow the original license Cite the original source properly

⚠️ Important Note on AITL Architecture and Methodology

The licenses above apply to individual materials
(source code, text materials, figures, and diagrams) respectively.

The AITL architecture and methodology as an integrated system
(FSM × PID × LLM layered control design and its associated educational framework)
are not granted by the above licenses.

🚫 Systematic reuse, redistribution, or commercial application
of the AITL methodology or its complete educational structure
requires explicit permission from the project authors.


💬 Technical Discussion / Consultation

Discussion

This portal does not provide private contact channels
(e-mail, social media, or direct messages).

All technical questions, discussions, and consultation inquiries
are handled publicly via GitHub Discussions,
with an emphasis on reproducibility and design context.