1
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-06-13

概要

Scilabのボード線図は正しくない場合があります。

伝達関数

1kHzカットのハイパスフィルタで試します。

G=
    0.0001s    
   ----------  
   1 +0.0001s  

の時ボード線図は

image.png
1kHzカットが出ていません・・・

実際のボード線図は

6_13.png

横軸は[Hz]です。

ちゃんと1kHzでカットするハイパスフィルタになってます。

結論

Scilabのボード線図は間違っている場合があるので注意してください
私が間違っているかもしれないですが、理由が知りたい

コード

close;

s = %s; //記号変数の定義

Rc = 10^(-4)
Rfc= 10^(-4)

Gs = Rc*s/(1+ Rfc*s) //伝達関数の定義 
G = syslin('c', Gs); //連続時間システムの定義


bode(G,[10^-3,10^8]);

1
0
0

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
1
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?