Issues with the normalisation of mode shapes?
20 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I exported mass and stiffness matrices from ABAQUS so I can perform a reduction of the degrees of freedom for later work.
The full matrices exported from ABAQUS have 123 degrees of freedom. I used the eig function (eig(K, M)) on the full mass and stiffness matrices and got the correct eigenvalues and eigenvectors out. The eigenvectors for the full mass and stiffness matrices were mass normalised, which is what I expected.
The reduced matrices had 40 degrees of freedom. I used the eig function on these reduced mass and stiffness. I got almost exact eigenvalues when compared to the full model, however, the eigenvectors were normalised by the max displacement of the mode and not mass normalised as i would've expected.
The only thing that changed between the full and reduced matrices is the reduction itself, the eig function was called the same.
Does anyone know why eig has normalised differently?
0 件のコメント
採用された回答
Christine Tobler
2023 年 2 月 9 日
編集済み: Christine Tobler
2023 年 2 月 9 日
eig(A, B) normalizes the eigenvectors in the B-mass norm, but only if it recognizes the input as a symmetric problem (A is symmetric and B is symmetric positive definite).
Possibly the difference between your calls is that A or B isn't exactly symmetric for the reduced matrix pair. Can you try to call eig((A+A')/2, (B+B')/2) instead?
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!