基于聚类能量的模态保证准则 (CEMAC)附matlab代码

简介: 基于聚类能量的模态保证准则 (CEMAC)附matlab代码

✅作者简介:热爱科研的Matlab仿真开发者,修心和技术同步精进,matlab项目合作可私信。

🍎个人主页:Matlab科研工作室

🍊个人信条:格物致知。

更多Matlab仿真内容点击👇

智能优化算法       神经网络预测       雷达通信      无线传感器        电力系统

信号处理              图像处理               路径规划       元胞自动机        无人机

⛄ 内容介绍

In the context of finite element model updating using output-only vibration test data, natural frequencies and mode shapes are used as validation criteria. Consequently, the correct pairing of experimentally obtained and numerically derived natural frequencies and mode shapes is important. In many cases, only limited spatial information is available and noise is present in the measurements. Therefore, the automatic selection of the most likely numerical mode shape corresponding to a particular experimentally identified mode shape can be a difficult task. The most common criterion for indicating corresponding mode shapes is the modal assurance criterion. Unfortunately, this criterion fails in certain cases and is not reliable for automatic approaches. In this paper, the purely mathematical modal assurance criterion will be enhanced by additional physical information from the numerical model in terms of modal strain energies. A numerical example and a benchmark study with experimental data are presented to show the advantages of the proposed energy-based criterion in comparison to the traditional modal assurance criterion.

⛄ 完整代码

%% Clustered Energy Based Modal Assurance Criterion (MAC)


%% Reference

% Brehm, M., Zabel, V., & Bucher, C. (2010). An automatic mode pairing

% strategy using an enhanced modal assurance criterion based on modal

% strain energies. Journal of Sound and Vibration, 329(25), 5375-5392.

%

% <https://doi.org/10.1016/j.jsv.2010.07.006>


%% Description

% The above reference proposes a mode pairing strategy using an enhanced

% modal assurance criterion based on modal strain energies. The procedure

% analyzed in section 3 (Mode assignment using energy-based modal assurance

% criterion) of this reference is programmed in this submission. This

% verification script verifies a specific result of section 4 (Benchmark

% study: cantilever truss), i.e. the fraction of the total modal strain

% energy of numerical eigenmode 1 that corresponds to vertical degrees of

% freedom, shown in Figure 7.


%% Structural eigenvalue analysis

% Load stiffness matrix

load('K.mat','K')


%%

% Load stiffness matrix

load('M.mat','M')


%%

% Eigenvalue analysis

[V,D]=eig(K,M);


%%

% Eigenfrequencies (cycles/time)

f=sqrt(diag(D))/(2*pi);

f(1)


%%

% Check equation (6)

M6=V'*M*V;

figure()

imagesc(M6)


%%

% Check equation (7)

M7=V'*K*V;

figure()

imagesc(M7)


%% Modal assurance criterion

% Apply equation (1)

mac=zeros(size(V,2));

for i=1:size(V,2)

   for j=1:size(V,2)

       mac(i,j)=(abs(V(:,i)'*V(:,j)))^2/((V(:,i)'*V(:,i))*(V(:,j)'*V(:,j)));

   end

end


%%

% Define clustering (horizontal and vertical DOFs)

cl={1:2:20,2:2:20};


%%

% Define eigenmode ID

j=1;


%%

% Define cluster ID

k=2;


%%

% Apply equation (10)

MSEjk=0;

for l=1:numel(cl)

   MSEjk=MSEjk+1/2*V(cl{k},j)'*K(cl{k},cl{l})*V(cl{l},j);

end


%%

% Apply equation (11)

MSEj=0;

for k=1:numel(cl)

   for l=1:numel(cl)

       MSEj=MSEj+1/2*V(cl{k},j)'*K(cl{k},cl{l})*V(cl{l},j);

   end

end


%%

% Apply equation (12). Compare the result with the relative modal strain

% energy for vertical degrees of freedom of the 1st numerical mode of

% Figure 7 of the above reference.

PI_jk=MSEjk/MSEj


⛄ 运行结果

⛄ 参考文献

Brehm, M., Zabel, V., & Bucher, C. (2010). An automatic mode pairing strategy using an enhanced modal assurance criterion based on modal  strain energies. Journal of Sound and Vibration, 329(25), 5375-5392.

❤️部分理论引用网络文献,若有侵权联系博主删除
❤️ 关注我领取海量matlab电子书和数学建模资料


相关文章
|
2月前
|
算法 定位技术 计算机视觉
【水下图像增强】基于波长补偿与去雾的水下图像增强研究(Matlab代码实现)
【水下图像增强】基于波长补偿与去雾的水下图像增强研究(Matlab代码实现)
114 0
|
2月前
|
算法 机器人 计算机视觉
【图像处理】水下图像增强的颜色平衡与融合技术研究(Matlab代码实现)
【图像处理】水下图像增强的颜色平衡与融合技术研究(Matlab代码实现)
|
2月前
|
机器学习/深度学习 算法 机器人
使用哈里斯角Harris和SIFT算法来实现局部特征匹配(Matlab代码实现)
使用哈里斯角Harris和SIFT算法来实现局部特征匹配(Matlab代码实现)
147 8
|
2月前
|
机器学习/深度学习 编解码 算法
基于OFDM技术的水下声学通信多径信道图像传输研究(Matlab代码实现)
基于OFDM技术的水下声学通信多径信道图像传输研究(Matlab代码实现)
144 8
|
2月前
|
机器学习/深度学习 算法 机器人
【水下图像增强融合算法】基于融合的水下图像与视频增强研究(Matlab代码实现)
【水下图像增强融合算法】基于融合的水下图像与视频增强研究(Matlab代码实现)
213 0
|
2月前
|
新能源 Java Go
【EI复现】参与调峰的储能系统配置方案及经济性分析(Matlab代码实现)
【EI复现】参与调峰的储能系统配置方案及经济性分析(Matlab代码实现)
109 0
|
2月前
|
机器学习/深度学习 数据采集 测试技术
基于CEEMDAN-VMD-BiLSTM的多变量输入单步时序预测研究(Matlab代码实现)
基于CEEMDAN-VMD-BiLSTM的多变量输入单步时序预测研究(Matlab代码实现)
|
2月前
|
机器学习/深度学习 算法 自动驾驶
基于导向滤波的暗通道去雾算法在灰度与彩色图像可见度复原中的研究(Matlab代码实现)
基于导向滤波的暗通道去雾算法在灰度与彩色图像可见度复原中的研究(Matlab代码实现)
159 8
|
2月前
|
编解码 运维 算法
【分布式能源选址与定容】光伏、储能双层优化配置接入配电网研究(Matlab代码实现)
【分布式能源选址与定容】光伏、储能双层优化配置接入配电网研究(Matlab代码实现)
156 12
|
2月前
|
人工智能 数据可视化 网络性能优化
【顶级SCI复现】虚拟电厂的多时间尺度调度:在考虑储能系统容量衰减的同时,整合发电与多用户负荷的灵活性研究(Matlab代码实现)
【顶级SCI复现】虚拟电厂的多时间尺度调度:在考虑储能系统容量衰减的同时,整合发电与多用户负荷的灵活性研究(Matlab代码实现)
106 9

热门文章

最新文章