Second-Order Matrix Differential Equation
이전 댓글 표시
I am attempting to solve a second-order differential for a double spring-mass-damper system. I was able to work out the math and obtain the differential equation in the format Mx" = Kx' + Bx + F.
M,K,B and F are matrices.
M= [m1 0 0; 0 m2 0; 0 0 m3];
K= [-k1 k1 0; k1 -k1-k2 k2; 0 k2 -k2];
B= [-b1 b1 0; b1 -b1-b2 b2; 0 b2 -b2];
F= [f 0 0];
All variables inside the matrices are random integers. I attempted to approach this in Simulink and also as a system of first order differential but my knowledge in MATLAB was not sufficient to use it as a matrix.
Any help is much appreciated!
댓글 수: 4
darova
2021년 3월 6일
Please show your attempts
Shabeel Samad
2021년 3월 8일
편집: Shabeel Samad
2021년 3월 8일
James Tursa
2021년 3월 8일
What do you mean by "All variables inside the matrices are random integers"? That you are starting the system off with random parameters but these parameters remain fixed throughout the simulation? Or that you have some type of stochastic system where the parameters change randomly during the simulation?
Shabeel Samad
2021년 3월 8일
편집: Shabeel Samad
2021년 3월 8일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!