FEAP User Forum
FEAP => General questions => Topic started by: M. Kurdi on September 05, 2013, 01:43:29 PM
-
Hello,
I want to compute the natural frequencies of structure from solving eigenvalue problem of the tangent stiffness and mass matrices. I am using following commands to output these matrices and solve the normal mode shapes:
batch
MASS
TANGent
SUBSpace,,3
TANGent,,-1
OUTPUT TANG
OUTPUT MASS
end
When solving the eigenvalue problem using the MASS_001 AND tang_001 matrices the results do not match the ones provided using FEAP analysis. Do I need to use a different command to get these matrices?
Thanks for your help.
-
This should work just fine. Perhaps you treated the matricies incorrectly in your external program?
If using MATLAB try something like:
K = full(spconvert(tang_001));
M = full(spconvert(mass_001));
eig(K,M)
You should get an identical match to the EIGENVALUES themselves. Be careful to not compare circular frequencies
or other quantities that FEAP provides in addition to the eigenvalues themselves.
-
Thank you!