Subspace Identification Methods for Modal Analysis

버전 1.0.4 (5.1 KB) 작성자: Ayad Al-Rumaithi
Stochastic Subspace Identification(SSI), Deterministic Subspace Identification(DSI), Deterministic Stochastic Subspace Identification(DSSI)
다운로드 수: 609
업데이트 날짜: 2019/6/18

라이선스 보기

System identification using subspace identification methods.

Along with the functions example file is provided for the identification of 2DOF system subject to gaussian white noise excitation with added uncertainty (also gaussian white noise) to both excitation and response.

Stochastic Subspace Identification(SSI)
function [Result]=SSI(output,fs,cut)

Input:
output: output data of size (No. output channels, No. of data)
fs: Sampling frequency
cut: cutoff value=2*no of modes

Outputs :
Result : A structure consist of the below components
Parameters : NaFreq : Natural frequencies vector
DampRatio : Damping ratios vector
ModeShape : Mode shape matrix
Matrices A,C: Discrete A and C matrices
-----------------------------------
Deterministic Subspace Identification(DSI)
function [Result]=DSI(output,input,fs,cut)

Input:
output: output data of size (No. output channels, No. of data)
input: input data of size (No. input channels, No. of data)
fs: Sampling frequency
cut: cutoff value=2*no of modes

Outputs :
Result : A structure consist of the below components
Parameters : NaFreq : Natural frequencies vector
DampRatio : Damping ratios vector
ModeShape : Mode shape matrix
Matrices A,B,C,D: Discrete A,B,C and D matrices
-----------------------------------
Deterministic Stochastic Subspace Identification(DSSI)
function [Result]=DSSI(output,input,fs,cut)

Input:
output: output data of size (No. output channels, No. of data)
input: input data of size (No. input channels, No. of data)
fs: Sampling frequency
cut: cutoff value=2*no of modes

Outputs :
Result : A structure consist of the below components
Parameters : NaFreq : Natural frequencies vector
DampRatio : Damping ratios vector
ModeShape : Mode shape matrix
Matrices A,B,C,D: Discrete A,B,C and D matrices

References:
-----------------
Van Overschee, Peter, and B. L. De Moor. Subspace identification for linear systems: Theory—Implementation—Applications. Springer Science & Business Media, 2012.

인용 양식

Ayad Al-Rumaithi (2024). Subspace Identification Methods for Modal Analysis (https://www.mathworks.com/matlabcentral/fileexchange/69502-subspace-identification-methods-for-modal-analysis), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2017b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Linear Model Identification에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.4

references

1.0.3

example modified

1.0.2

summary

1.0.1

functions are modified with example.Added description and figure

1.0.0