Multi-degree of Freedom System Solver

버전 1.0.2 (1.76 KB) 작성자: Ayad Al-Rumaithi
Calculates the modal parameters and response of multi-degree of freedom linear system subjected to dynamic forces.
다운로드 수: 2.6K
업데이트 날짜: 2021/12/18

라이선스 보기

Calculates the response of multi-degree of freedom classically damped linear system subjected to dynamic forces (using Modal Superposition method [1]).
function Result=MDOF_simulation(M,C,K,f,fs)
input:
M:mass matrix (n*n)
C:damping matrix (n*n)
K:stiffness matrix (n*n)
f:external force matrix(n,N)
fs: sampling frequency
where n is the number of degrees of freedom, N is the length of data points of dynamic force
Output:
Result: is a structure consist of
Result.Displacement: Displacement (n*N)
Result.Velocity: Velocity (n*N)
Result.Acceleration: Acceleration (n*N)
Result.Parameters.Freq=Natural Frequency (n*1)
Result.Parameters.DampRatio=Damping Ratio (n*1)
Result.Parameters.ModeShape=Mode Shapes Matrix (n*n)
References:
[1] Chopra, Anil K. "Dynamics of Structures. Theory and Applications to." Earthquake Engineering (2017).

인용 양식

Ayad Al-Rumaithi (2024). Multi-degree of Freedom System Solver (https://www.mathworks.com/matlabcentral/fileexchange/69509-multi-degree-of-freedom-system-solver), MATLAB Central File Exchange. 검색됨 .

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

Community Treasure Hunt

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

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

corrected damping ratio equation

1.0.1

Description

1.0.0