🧮 03. 安定性判別法(Routh, 根軌跡, ナイキスト)

03. Stability Determination Methods (Routh, Root Locus, Nyquist)

Note: 数式が正しく表示されない場合は GitHub版 を参照してください。


制御系の最も基本的な要件は 「安定であること」 です。本節では、古典制御理論における安定性の定義と、主要な判別法である Routh-Hurwitz判別法, 根軌跡法(Root Locus), ナイキスト法(Nyquist) を学びます。
The most fundamental requirement of a control system is stability. This section explains the definition of stability in classical control theory and the major determination methods: Routh-Hurwitz criterion, Root Locus, and Nyquist method.


🎯 本節の学習目標|Learning Objectives


📌 安定性の定義|Definition of Stability

制御系が安定であるとは、すべての閉ループ極が左半平面にあることを意味します。
A control system is stable if all closed-loop poles lie in the left-half complex plane.


🔢 Routh-Hurwitz判別法|Routh-Hurwitz Criterion

伝達関数 / Transfer Function:

\[G(s) = \frac{N(s)}{D(s)} = \frac{b_ms^m + \cdots + b_0}{a_ns^n + \cdots + a_0}\]

安定性は $D(s)$ の根(極)に依存します。
Stability depends on the roots (poles) of $D(s)$.

手順(例:4次系) / Procedure (Example: 4th order):

  1. 係数を使って1列目を作成 / Fill first column using coefficients
  2. 補間計算で表を構成 / Build table with interpolation calculations
  3. 1列目の符号変化回数 = 不安定極の数 / Number of sign changes = number of unstable poles

すべて正 → 安定 / All positive → Stable


📈 根軌跡法|Root Locus Method

開ループ伝達関数 / Open-loop transfer function:

\[G(s)H(s) = \frac{K \cdot N(s)}{D(s)}\]

🌀 ナイキスト判別法|Nyquist Stability Criterion

周波数応答を用いた安定性評価
Evaluates stability using frequency response.

判別ルール / Rule:

\[N = Z - P\]

$Z = 0$ → 安定 / Stable if $Z=0$


🛠️ 各手法の比較|Comparison

判別法 / Method 利点 / Advantages 注意点 / Limitations
Routh-Hurwitz 計算簡単・定量的 / Simple & quantitative 高次で複雑化 / Complex for high-order
根軌跡法 可視化容易 / Easy visualization モデル依存 / Model-dependent
ナイキスト法 周波数応答ベース / Based on frequency response 実測データ必要 / Requires measured data

🧪 Python実装例|Python Examples

📂 See: /simulation/stability_methods.py


📚 参考資料|References


⬅️ 前節 / Previous Section
過渡応答と定常偏差の基礎を学びます。
Covers fundamentals of transient response & steady-state error.

➡️➡️ 次節 / Next Section
周波数応答とボード線図の解析手法を解説します。
Explains frequency response and Bode plot analysis.

📚 この章のREADMEへ / Back to Part 1 README
古典制御理論の全体構成と教材一覧に戻ります。
Return to the full Part 1 structure and materials list.