Effacer les filtres
Effacer les filtres

FlexibleWi​ngModesExa​mple.m里面数据​使用是不是有误

1 vue (au cours des 30 derniers jours)
jie dong
jie dong le 31 Août 2022
这个例子中使用modalfit函数,matlab中该函数modalfit默认模型输出为位移,而实际上在该程序中sys2输出为加速度,所以该程序计算得到的振型不对吧,下面的语句有误吧
[fn,dr,ms] = modalfit(sys2,f,length(Freq),'PhysFreq',Freq);
以下指令语句也说明了传递函数Gs的输出是加速度
G{k} = etfe(Data_k, [], N);
bodeplot(Gs([Imin, Imax],:), sys1([Imin, Imax],:), opt);

Réponses (1)

Anjaneyulu Bairi
Anjaneyulu Bairi le 12 Fév 2024
Modifié(e) : Anjaneyulu Bairi le 12 Fév 2024
Hi,
The "modalfit" function from the documentation example uses the below syntax.
[fn,dr,ms] = modalfit(___)
Where fn are the natural frequencies (in Hz), dr are the corresponding damping coefficients, and ms are the normalized residuals as column vectors (one column for each natural frequency. The "modalfit" function can work with different types of system outputs, not just displacement. It is capable of handling systems where the output is acceleration, velocity, or displacement.
You can visit the below documentation for more information on the "modalfit" function.
I hope this helps to resolve your query and proceed further.

Catégories

En savoir plus sur Statistics and Machine Learning Toolbox dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!