Calculating EigenVectors from Mode Shapes
23 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I want to plot eigen vectors and mode shapes of a Timoschenko beam. I already have solved the system using finite element methods and generated stiffness, mass and damping matrices.
I am attaching them as files. I calculated natural frequencies using this equation
de = sqrt(eigs(Stiffness_Global,Mass_Global,12,'smallestabs'))/((2*pi));
and the result I got is this:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/321349/image.jpeg)
Now, how can I calculate mode shapes of these frequencies and plot them..?
I tried using this equation
[V,D] = eigs(Stiffness_Global,Mass_Global,12,'smallestabs')
but the results, I cannot understand them
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/321352/image.jpeg)
Does anyone know..?
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!