hexMeshCylinder
Below is a demonstration of the features of the hexMeshCylinder function
Contents
clear; close all; clc;
Plot settings
fontSize=15; faceAlpha1=1; edgeColor=0.25*ones(1,3); edgeWidth=2;
Creating a solid hexahedral mesh sphere
Creating a solid hexahedral mesh sphere
pointSpacing=0.5;
cylRadius=1;
cylLength=2;
[meshStruct]=hexMeshCylinder(cylRadius,cylLength,pointSpacing);
% Access model element and patch data
Fb=meshStruct.facesBoundary;
Cb=meshStruct.boundaryMarker;
V=meshStruct.nodes;
E=meshStruct.elements;
Visualize mesh
hFig=cFigure; subplot(1,2,1); hold on; title('Boundary surfaces','FontSize',fontSize); gpatch(Fb,V,Cb,'k',0.5,2); % patchNormPlot(Fb,V); axisGeom(gca,fontSize); colormap(gjet); icolorbar; camlight headlight; hs=subplot(1,2,2); hold on; title('Cut view of solid mesh','FontSize',fontSize); optionStruct.hFig=[hFig hs]; gpatch(Fb,V,'kw','none',0.25); meshView(meshStruct,optionStruct); axisGeom(gca,fontSize); drawnow;
GIBBON www.gibboncode.org
Kevin Mattheus Moerman, [email protected]
GIBBON footer text
License: https://github.com/gibbonCode/GIBBON/blob/master/LICENSE
GIBBON: The Geometry and Image-based Bioengineering add-On. A toolbox for image segmentation, image-based modeling, meshing, and finite element analysis.
Copyright (C) 2006-2020 Kevin Mattheus Moerman
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.