🧪 Appendix F1_07 CFETモデル実習

Appendix F1_07: CFET Modeling Practice


🔰 概要 / Overview

本補足では、CFET構造(Stacked n/pMOS) に対応する仮想的なコンパクトモデルの実習例を提示します。
BSIM-CMG を拡張する形で「CFET版Compact Model」の概念を理解することが目的です。

This appendix provides practical exercises with a virtual compact model for CFET structures,
demonstrating how BSIM-CMG can be extended conceptually toward a future CFET-oriented model.


⚙️ 1. モデル構築の考え方 / Concept of Model Construction


📘 2. Spice擬似モデル例 / Example of Pseudo-Spice Model

* ===============================================
* Pseudo CFET Compact Model (Stacked nMOS/pMOS)
* ===============================================
.subckt CFET_NP_STACK D G S B
* --- Upper nMOS ---
Xn D G Nint B bsimcmg type=n fin=2
* --- Lower pMOS ---
Xp Nint G S B bsimcmg type=p fin=2
* --- Coupling elements ---
Rth Nint B  5k       ; thermal resistance (example)
Cnp G Nint  2e-15    ; coupling capacitance
.ends CFET_NP_STACK

👉 この例は 教育用の疑似定義であり、実際のBSIMライブラリには存在しません。
学習者に「モデルの拡張イメージ」を掴ませることが目的です。


🖥️ 3. シミュレーション実習 / Simulation Exercises

ここでは、擬似CFETモデルを用いた簡易的なシミュレーション実習を行います。
LTspice や ngspice で実行可能な .spice ネットリスト例を基に、熱結合や寄生容量の効果を確認します。

This section demonstrates simple simulation exercises using a pseudo-CFET model.
By running these in LTspice or ngspice, learners can observe the impact of thermal coupling and parasitics.


🧩 3.1 CMOSインバータ回路への適用 / Applying to CMOS Inverter

* CFET CMOS Inverter Example
Vin in 0 DC 0
Vdd vdd 0 0.8
Xc1 vdd in out 0 CFET_NP_STACK
Xc2 out in 0 0 CFET_NP_STACK
.dc Vin 0 0.8 0.01
.plot dc V(out)
.end

Run a DC sweep on Vin to observe the inverter’s Voltage Transfer Characteristic (VTC).


🌡️ 3.2 熱結合パラメータの効果 / Effect of Thermal Coupling

.param Rthval=5k
Rth Nint B {Rthval}

👉 Rthval1k10k と変化させ、伝達特性の変化を比較する。


⚡ 3.3 寄生容量の影響解析 / Analyzing Parasitic Coupling

Vin in 0 PULSE(0 0.8 0ps 10ps 10ps 100ps 200ps)
.tran 0.1ps 1ns
.plot tran V(in) V(out)

👉 Cnp02e-15 に設定し、出力遅延の差を観察。


📊 4. 教育的効果 / Educational Value

Through these exercises, learners experience the transition from BSIM4 → BSIM-CMG → CFET models.
By working with a virtual CFET model, they gain insight into the open challenges of modeling and the
importance of EDA–device integration in future semiconductor design.


📊 5. 実行結果例 / Example Simulation Results

以下の図は 教育用の概念図 であり、実際のCFETデバイスやBSIM-CMGモデルのシミュレーション結果ではありません。
熱結合(Rth)や寄生容量(Cnp)の影響を直感的に理解するためのイメージ図として利用してください。


🔀 VTCシフト(熱結合パラメータ Rth の影響)

CFET VTC Shift

Conceptual illustration of how thermal resistance (Rth) affects the CFET inverter’s voltage transfer characteristic.


⏱️ 遅延比較(寄生容量 Cnp の影響)

CFET Delay Comparison

Conceptual illustration of how parasitic coupling capacitance (Cnp) impacts the delay in CFET inverter switching.