일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 선형변환#contraction#expansions#shears#projections#reflection
- 변수분리#동차 미분방정식#완전 미분방정식
- 선형 상수계수 미분방정식#lccode#sinusoidal input
- linespectra#feurierseries#푸리에 급수
- 상태천이행렬#적분인자법#미정계수법#케일리-헤밀톤 정리
- 멱급수법
- 내적#duality#쌍대성#dot product
- 푸리에 급수
- 2계미방#모드#mod#특성방정식#characteristic eq#제차해
- 여인수 행렬
- 오일러-코시 미방#계수내림법
- 가중 최소제곱법
- 푸리에 정리
- 비제차#제차해#일반해#적분인자#적분인자법#homogeneous sol#nonhomogeneous sol#integrating factor
- 계수내림법#reduction of order#wronskian#론스키안#아벨항등식#abel's identity
- 베르누이 미분방정식
- 최소자승#least-square#목적함수#양한정#정점조건#최소조건
- 선형시스템연산자#라이프니츠 법칙#fundamental theorem of algebra#erf
- 여인자
- 직교행렬#정규직교행렬#orthonormal#reflection matrix#dcm
- dirichlet
- 내적 공간#적분
- 그람-슈미트 과정#gram-schmidt process
- 정규직교행렬
- 추정문제#normal equation#직교방정식#정사영#정사영행렬#정사영 변환
- weighted least-squares
- 부분 분수분해
- reflection matrix
- 미분방정식 #선형 미분방정식 #상미분 방정식
- 선형독립#기저벡터#선형확장#span#basis
Archives
OnlyOne
Dominant Pole Concept 본문
Dominant Pole Concept
2024.08.02 - [Engineering/Linear System and Signal] - Pole and Time Constant(시상수)
Pole and Time Constant(시상수)
Pole and Time Constant(시상수)Pole을 이해하기 위해 Real Exponential Signal에 대한 이해가 필수적이다. 2024.08.02 - [제어공학] - [졸빠거]Exponential Signal [졸빠거]Exponential Signal[졸빠거]Exponential Signal제어공학
taesan5435.tistory.com
오늘은 Dominant Pole의 5~6배가 steady-state임을 미리 공부했다. 오늘은 이것을 Matlab을 통해 확인해볼 것이다.
%================================================
%Handong Global University
%------------------------------------------------
%Name: Taesan Kim
%ID: 22300203
%Create: 2024.08.16
%Modifire: 2024.08.16
%------------------------------------------------
%Approximation of Impulsive delta signal
%================================================
clear all;
clc;
close all;
t = 0:0.01:6.28;
x1 = exp(-0.5*t) .* sin(0.5*t);
x2 = exp(-3.0*t) .* sin(3.0*t);
x = x1 + x2;
subplot(3,1,1);
plot(t, x);
subplot(3,1,2);
plot(t,x1);
subplot(3,1,3);
plot(t,x2);
결론
X1의 Pole은 0.5, X2의 Pole은 3.0 따라서 Dominant pole은 X1의 pole이다. x의 steady state는 6.28초 이후임을 위 3개의 그래프를 통해 알 수 있다. x1의 Pole은 0.5이므로 x1의 time constant는 2읻. 이론적으로, dominent pole의 time constant의 5~6배부터 steady-state이므로, 약 10-12초 뒤에 정상상태임을 알 수 있는데, 위 그래프에서 6.28초 뒤에 그래프가 0으로 수렴하므로, 그래프의 결과가 만족한다는 것을 알 수 있다.
'Control Engineering > Linear System and Signal' 카테고리의 다른 글
비선형 시스템의 선형화(Linearization of Nonlinear system) (0) | 2024.08.19 |
---|---|
시스템(System) (1) | 2024.08.19 |
Approximation of Impulse Delta Signal (0) | 2024.08.16 |
합성곱(Convolution); Properties (0) | 2024.08.13 |
오일러 공식[Euler Formula] (0) | 2024.08.12 |