hexMeshSphere
Below is a demonstration of the features of the hexMeshSphere function
Contents
clear; close all; clc;
Syntax
[meshStruct]=hexMeshSphere(optionStruct);
Description
This function creates a hexahedral mesh for a sphere based on the input struction optionStruct.
Examples
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
%Control settings optionStruct.sphereRadius=10; optionStruct.coreRadius=5; optionStruct.numElementsMantel=5; optionStruct.numElementsCore=8; optionStruct.makeHollow=0; optionStruct.outputStructType=2; %Creating sphere [meshStruct]=hexMeshSphere(optionStruct); % 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); % 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;
Creating a hollow hexahedral mesh sphere
Creating a hollow hexahedral mesh sphere
%Control settings optionStruct.sphereRadius=10; optionStruct.coreRadius=5; optionStruct.numElementsMantel=5; optionStruct.numElementsCore=8; optionStruct.makeHollow=1; optionStruct.outputStructType=2; %Creating sphere [meshStruct]=hexMeshSphere(optionStruct); % 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); % 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-2021 Kevin Mattheus Moerman and the GIBBON contributors
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/.