当前位置:   article > 正文

fem Triangular Mesh有限元三角网格生成器_matlab教程

matlab教程


    %This example generates NE elements for a rectangular structure of
    %length = Ly units and width = Lx units with Nx divisions on the x   
    %axis using femTriangularMeshGenerator function
    
    %   Kehinde Orolu
    %   Systems Engineering
    %   University of Lagos, Nigeria
    %   olukeh@yahoo.com
    
    cla
    Lx=100;
    Ly=100;
    Nx=8;
    NE=144;
    
    [coords cT nNodes ]=femTriangularMeshGenerator(Lx,Ly,Nx,NE);
    
    disp(['Number of nodes =  ',num2str(nNodes)])
    disp('Connectivity Table')
    disp(cT)
    
    
    z=1;
    for i=1:NE
        figure(1),patch('Vertices',coords(z:z+2,:),'Faces',[1,2,3],'FaceColor','none','EdgeColor','g')
        hold on
        z=z+3;
    end
    
    figure(1),scatter(coords(:,1),coords(:,2),'MarkerFaceColor','r')
    
    hold off

D145

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/178958?site
推荐阅读
相关标签
  

闽ICP备14008679号