- Scilabヘルプ
- CACSD
- Formal representations and conversions
- Plot and display
- abinv
- arhnk
- arl2
- arma
- arma2p
- arma2ss
- armac
- armax
- armax1
- arsimul
- augment
- balreal
- bilin
- bstap
- cainv
- calfrq
- canon
- ccontrg
- cls2dls
- colinout
- colregul
- cont_mat
- contr
- contrss
- copfac
- csim
- ctr_gram
- damp
- dcf
- ddp
- dhinf
- dhnorm
- dscr
- dsimul
- dt_ility
- dtsi
- equil
- equil1
- feedback
- findABCD
- findAC
- findBD
- findBDK
- findR
- findx0BD
- flts
- fourplan
- freq
- freson
- fspec
- fspecg
- fstabst
- g_margin
- gamitg
- gcare
- gfare
- gfrancis
- gtild
- h2norm
- h_cl
- h_inf
- h_inf_st
- h_norm
- hankelsv
- hinf
- imrep2ss
- inistate
- invsyslin
- kpure
- krac2
- lcf
- leqr
- lft
- lin
- linf
- linfn
- linmeq
- lqe
- lqg
- lqg2stan
- lqg_ltr
- lqr
- ltitr
- macglov
- minreal
- minss
- mucomp
- narsimul
- nehari
- noisegen
- nyquistfrequencybounds
- obs_gram
- obscont
- observer
- obsv_mat
- obsvss
- p_margin
- parrot
- pfss
- phasemag
- plzr
- pol2des
- ppol
- prbs_a
- projsl
- repfreq
- ric_desc
- ricc
- riccati
- routh_t
- rowinout
- rowregul
- rtitr
- sensi
- sident
- sorder
- specfact
- ssprint
- st_ility
- stabil
- sysfact
- syslin
- syssize
- time_id
- trzeros
- ui_observer
- unobs
- zeropen
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
csim
線形システムのシミュレーション (時間応答)
呼び出しの手順
[y [,x]]=csim(u,t,sl,[x0 [,tol]])
パラメータ
- u
関数, リストまたは文字列 (制御入力)
- t
時間を指定するための実数ベクトルで、
t(1)
は 初期時間 (x0=x(t(1))
)を表す.- sl
リスト (
syslin
)- y
y=[y(t(i)]
, i=1,..,n となる行列- x
x=[x(t(i)]
, i=1,..,n となる行列- tol
2つの要素 [atol rtol] からなるベクトルであり、それぞれ ODEソルバ(ode参照)の絶対許容誤差および相対許容誤差を定義する
説明
線形制御系 sl
のシミュレーションを行う.
sl
は、
syslin
リストで表された連続時間システムの
入力を前提とする.
u
は制御入力、x0
は状態量初期値である.
y
は出力、x
は状態量である.
制御入力は以下のいずれかとすることができる:
1. 関数 : [inputs]=u(t)
2. リスト : list(ut,parameter1,....,parametern)
.
ただし、inputs=ut(t,parameter1,....,parametern)
(ut
は関数)
3. インパルス応答の計算を表す文字列 "impuls"
(ここで、sl
は直達項を有さず、x0=0
である
SISO系であると仮定)
4. ステップ応答の計算を表す文字列 "step"
(ここで、sl
は直達項を有さず、x0=0
である
SISO系であると仮定)
5. t の各値に対応する u の値を指定するベクトル.
例
s=poly(0,'s');rand('seed',0);w=ssrand(1,1,3);w('A')=w('A')-2*eye(); t=0:0.05:5; //impulse(w) = step (s * w) clf(0);xset("window",0);show_window(); plot2d([t',t'],[(csim('step',t,tf2ss(s)*w))',0*t']) clf(1);xset("window",1);show_window(); plot2d([t',t'],[(csim('impulse',t,w))',0*t']) //step(w) = impulse (s^-1 * w) clf(3);xset("window",3);show_window(); plot2d([t',t'],[(csim('step',t,w))',0*t']) clf(4);xset("window",4);show_window(); plot2d([t',t'],[(csim('impulse',t,tf2ss(1/s)*w))',0*t']) //input defined by a time function deff('u=input(t)','u=abs(sin(t))') clf();plot2d([t',t'],[(csim(input,t,w))',0*t'])
参照
Report an issue | ||
<< copfac | CACSD | ctr_gram >> |