Issues with the normalisation of mode shapes?

42 visualizzazioni (ultimi 30 giorni)
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?

Risposta accettata

Christine Tobler
Christine Tobler il 9 Feb 2023
Modificato: Christine Tobler il 9 Feb 2023
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?
  1 Commento
Kyle Dubber
Kyle Dubber il 9 Feb 2023
Hi Christine,
Thank you very much!
This has solved my issue and my mode shapes of the reduced matrices are mass normalised.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Acoustics, Noise and Vibration in Help Center e File Exchange

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by