📊 05_data_summary - SPICE評価結果の集計と可視化

Summary and Visualization of SPICE-Based Device Evaluation


📄 概要|Overview

このフォルダでは、前章までで取得した .log.dat ファイルから、
MOSトランジスタ特性(Vth・BTI・TDDB)を統合的に可視化します。
複数実験結果をまとめて、設計指標として扱いやすい形式に整理します。

This folder summarizes and visualizes Vth extraction and degradation models (BTI / TDDB),
using previously obtained .log and .dat files. The goal is to make data readily interpretable for design considerations.


📁 フォルダ構成|Folder Structure

ファイル名 / Folder 内容|Description
summary_vth.py Vth抽出データの統合・W/L依存の描画
summary_bti_tddb.py 劣化モデル(BTI/TDDB)の比較グラフ作成
data/ 各章から出力された .dat or .csv を格納
output/ グラフ画像・加工済データの保存先

🔧 使用環境|Requirements

pip install matplotlib pandas numpy

🚀 実行方法|How to Run

python3 summary_vth.py
python3 summary_bti_tddb.py

📈 出力内容|Output Samples


🧠 教育的意義|Educational Significance

項目|Item 内容|Description
🧪 統合解析 各章の出力をつなげて意味のある形に整理
📏 設計応用 電源・W/Lサイズ・ばらつきに基づく指標化
📚 データ駆動設計 SPICEデータを元に定量評価と設計フィードバック

🔍 Mermaid図による構成可視化(Code Block)

⚠️ このページではMermaidフローチャートは表示されません。
👉 GitHubページで以下を視覚的に確認できます:
📎 GitHubでMermaidフローチャートを見る

graph TD
  A[📘 Vth抽出<br>03_vth_extraction] --> B[📊 データ集計<br>summary_vth.py]
  C[📘 BTI/TDDBモデル<br>04_bti_tddb_estimation] --> D[📉 劣化可視化<br>summary_bti_tddb.py]
  B --> E[📈 設計指標グラフ]
  D --> E
  style A fill:#e0f7fa,stroke:#00796b,stroke-width:2px
  style C fill:#fce4ec,stroke:#c2185b,stroke-width:2px
  style B fill:#f1f8e9,stroke:#33691e,stroke-width:2px
  style D fill:#fff8e1,stroke:#f57f17,stroke-width:2px
  style E fill:#ede7f6,stroke:#4527a0,stroke-width:2px