🔁 02. Z変換と離散時間制御系

🔁 02. Z-Transform & Discrete Control Representation

ℹ️ 数式が正しく表示されない場合は GitHub版 / GitHub version をご確認ください


ディジタル制御では、連続系のラプラス変換に対応する離散時間の変換手法として
Z変換を用います。これは差分方程式を伝達関数的に表現するための基本です。

In digital control, the Z-transform is the discrete-time counterpart to the Laplace transform in continuous systems,
providing a fundamental way to represent difference equations as transfer functions.


🎯 学習目標 / Learning Objectives


📐 Z変換の定義 / Definition

離散信号 $x[k]$ に対して、Z変換は以下のように定義されます:

\[X(z) = \mathcal{Z}\{x[k]\} = \sum_{k=0}^\infty x[k] z^{-k}\]

🔁 Z変換の基本性質 / Basic Properties

性質 / Property 内容 / Description
線形性 / Linearity $\mathcal{Z}{ax[k] + by[k]} = aX(z) + bY(z)$
時間シフト / Time shift $\mathcal{Z}{x[k-n]} = z^{-n}X(z)$
畳み込み定理 / Convolution $x[k] * h[k] \leftrightarrow X(z)H(z)$

🏗️ 離散時間伝達関数 / Discrete-Time Transfer Function

\[G(z) = \frac{b_0 + b_1 z^{-1} + \dots + b_m z^{-m}}{1 + a_1 z^{-1} + \dots + a_n z^{-n}}\]

⚙️ 離散化(Tustin法など) / Discretization Methods

Tustin(双一次変換 / Bilinear Transform)

\[s = \frac{2}{T_s} \cdot \frac{1 - z^{-1}}{1 + z^{-1}}\]

ゼロ次ホールド(ZOH)変換 / Zero-Order Hold


🧩 安定性判定(Z平面) / Stability in the Z-Plane

\[|z_i| < 1 \quad \text{for all } i\]

🧪 活用例 / Applications


📚 参考資料 / References


⬅️ 前節 / Previous
Covers sampling theory and Zero-Order Hold.

➡️➡️ 次節 / Next
Covers the design and comparison of discrete PID controllers.

🏠 Part 04 トップ / Back to Part 04 Top