Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
jie dong
jie dong am 31 Aug. 2022
Bearbeitet: Anjaneyulu Bairi am 12 Feb. 2024
这个例子中使用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);

Antworten (1)

Anjaneyulu Bairi
Anjaneyulu Bairi am 12 Feb. 2024
Bearbeitet: Anjaneyulu Bairi am 12 Feb. 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.

Kategorien

Mehr zu Statistics and Machine Learning Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!