0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

周波数応答シミュレーション(scilab)

Last updated at Posted at 2021-02-22

はじめに

今日調べたことで、いつか使いそうなので、まとめておく。

ゲイン(増幅率)

出力/入力で表される。

デシベル表記にするとき、
G[dB] = 20log10(output/input)
25mVの入力に対し、100mVの出力の時、
ゲインG = 0.25 = -12[dB]

なぜ対数表記にするのか。

人間(生物?)の感覚に合わせるため。
例えば、
振幅、周波数、音、明るさ、地震の強さであるマグニチュード

シミュレーション

モータの伝達関数 1/(s^2 + s + 10) のときのscilabのシミュレーション
上のグラフの尖っているところは固有振動数であり、これが建物などで、偶然外力によって、この固有振動数が与えられると崩壊しやすい。

scilab.
s = %s;
G = syslin('c', 1/(s^2 + s + 10));
bode(G);           // ボード線図, 周波数応答のゲインと位相をプロットする

image.png

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?