lrxing 发表于 2012-8-2 10:10

简支矩形板,用matlab如何画出它的振型图?要用到振动函数?

简支矩形板自由振动的固有频率计算出来后,用matlab如何画出它的振型图?要用到振动函数?怎样求解它的振型函数?初学者,请教大家,谢谢

shineyao 发表于 2012-8-3 10:54

我最近也在看这一方面,也不是太懂。振型函数我求不来,如果求出振动函数之后可以通过simulink里的积分、求和、增益和示波器把图画出来。

smallqiao 发表于 2012-8-4 20:25

回复 1 # lrxing 的帖子

The mode shape of a simply supported panel四端简支 模态阵型三维图

% The mode shape of a simply supported panel mode(n1,n2)

n1=2;

n2=2;

Lx=0.7; %demensions

Ly=0.54;

x=0:.01:Lx;%节点

y=0:.01:Ly;

=meshgrid(x,y); %mesh

Modal_shape=4*sin(n1*pi*X/Lx).*sin(n2*pi*Y/Ly); % the formulation of modal shape

for ii=1:20

    for i=-100:2:100

      surf(X,Y,0.01*i*Modal_shape)

      axis()

      pause(0.001)

      xlabel('mode(1,2)')

    end

end
http://hi.baidu.com/smallqiao/item/e51fe83e37bbec82b611db26

lrxing 发表于 2012-8-14 10:19

非常感谢

blues-et 发表于 2012-8-16 21:07

同样学习了

blues-et 发表于 2012-8-16 21:07

同样学习了

xuning0418 发表于 2012-8-20 15:51

同样学习了,,,

ldsbuilder 发表于 2012-11-13 16:19

他们回答,全部是胡说八道。
振型表达式很简单:W=sin(m*pi*x/b)sin(n*pi*y/b)。
mn是0123456等等。



lrxing 发表于 2012-11-16 17:31

ldsbuilder 发表于 2012-11-13 16:19 static/image/common/back.gif
他们回答,全部是胡说八道。
振型表达式很简单:W=sin(m*pi*x/b)sin(n*pi*y/b)。
mn是0123456等等。
...

现在基本弄懂了,很感谢你
页: [1]
查看完整版本: 简支矩形板,用matlab如何画出它的振型图?要用到振动函数?