DEMO_febio_0011_cube_multi_generation
Below is a demonstration for:
- Building geometry for a cube with hexahedral elements
- Defining the boundary conditions
- Coding the febio structure
- Running the model
- Importing and visualizing the displacement and stress results
Contents
Keywords
- febio_spec version 4.0
- febio, FEBio
- compression, tension, compressive, tensile
- displacement control, displacement boundary condition
- hexahedral elements, hex8
- cube, box, rectangular
- static, solid
- multigeneration, multi-generation
- multi-step analysis
- hyperelastic, Ogden
- displacement logfile
- stress logfile
clear; close all; clc;
Plot settings
fontSize=20; faceAlpha1=0.8; markerSize=40; lineWidth=3;
Control parameters
% Path names defaultFolder = fileparts(fileparts(mfilename('fullpath'))); savePath=fullfile(defaultFolder,'data','temp'); % Defining file names febioFebFileNamePart='tempModel'; febioFebFileName=fullfile(savePath,[febioFebFileNamePart,'.feb']); %FEB file name febioLogFileName=[febioFebFileNamePart,'.txt']; %FEBio log file name febioLogFileName_disp=[febioFebFileNamePart,'_disp_out.txt']; %Log file name for exporting displacement febioLogFileName_strainEnergy=[febioFebFileNamePart,'_energy_out.txt']; %Log file name for exporting strain energy density %Specifying dimensions and number of elements cubeSize=10; sampleWidth=cubeSize; %Width sampleThickness=cubeSize; %Thickness sampleHeight=cubeSize; %Height pointSpacings=1*ones(1,3); %Desired point spacing between nodes numElementsWidth=round(sampleWidth/pointSpacings(1)); %Number of elemens in dir 1 numElementsThickness=round(sampleThickness/pointSpacings(2)); %Number of elemens in dir 2 numElementsHeight=round(sampleHeight/pointSpacings(3)); %Number of elemens in dir 3 %Define applied displacement appliedStrain=0.3; %Linear strain (Only used to compute applied stretch) loadingOption='tension'; % or 'tension' switch loadingOption case 'compression' stretchLoad=1-appliedStrain; %The applied stretch for uniaxial loading case 'tension' stretchLoad=1+appliedStrain; %The applied stretch for uniaxial loading end displacementMagnitude=(stretchLoad*sampleHeight)-sampleHeight; %The displacement magnitude %Material parameters k_factor=50; c1=2; m1=2; k=c1*k_factor; c1_g=[c1/1000 c1*2]; k_g=c1_g*k_factor; % FEA control settings numTimeSteps=10; %Number of time steps desired max_refs=25; %Max reforms max_ups=0; %Set to zero to use full-Newton iterations opt_iter=6; %Optimum number of iterations max_retries=5; %Maximum number of retires dtmin=(1/numTimeSteps)/100; %Minimum time step size dtmax=1/numTimeSteps; %Maximum time step size runMode='external';% 'internal' or 'external'
Creating model geometry and mesh
A box is created with tri-linear hexahedral (hex8) elements using the hexMeshBox function. The function offers the boundary faces with seperate labels for the top, bottom, left, right, front, and back sides. As such these can be used to define boundary conditions on the exterior.
% Create a box with hexahedral elements cubeDimensions=[sampleWidth sampleThickness sampleHeight]; %Dimensions cubeElementNumbers=[numElementsWidth numElementsThickness numElementsHeight]; %Number of elements outputStructType=2; %A structure compatible with mesh view [meshStruct]=hexMeshBox(cubeDimensions,cubeElementNumbers,outputStructType); %Access elements, nodes, and faces from the structure E=meshStruct.elements; %The elements V=meshStruct.nodes; %The nodes (vertices) Fb=meshStruct.facesBoundary; %The boundary faces Cb=meshStruct.boundaryMarker; %The "colors" or labels for the boundary faces
Splitting mesh into 2 material groups
X=V(:,1); Y=V(:,2); Z=V(:,3); VE=[mean(X(E),2) mean(Y(E),2) mean(Z(E),2)]; logicMaterial_1=VE(:,1)<0; elementMaterialID=logicMaterial_1+1; %Reoder E to cope with FEBio bug in relation to element ordering and %multiple material sets E=[E(elementMaterialID==1,:); E(elementMaterialID==2,:);]; elementMaterialID=[elementMaterialID(elementMaterialID==1,:); elementMaterialID(elementMaterialID==2,:);]; %Fix meshStruct to allow for meshView based visualization meshStruct.elementMaterialID=elementMaterialID; meshStruct.elements=E;
Plotting model boundary surfaces and a cut view
hFig=cFigure; hs=subplot(1,2,1); hold on; title('Model boundary surfaces and labels','FontSize',fontSize); gpatch(Fb,V,Cb,'k',faceAlpha1); view(3) colormap(gjet(12)); icolorbar; axisGeom(gca,fontSize); hs=subplot(1,2,2); hold on; title('Cut view of solid mesh','FontSize',fontSize); optionStruct.hFig=[hFig hs]; meshView(meshStruct,optionStruct); axisGeom(gca,fontSize); drawnow;
Defining the boundary conditions
The visualization of the model boundary shows colors for each side of the cube. These labels can be used to define boundary conditions.
%Define supported node sets logicFace=Cb==5; %Logic for current face set Fr=Fb(logicFace,:); %The current face set bcSupportList=unique(Fr(:)); %Node set part of selected face %Prescribed displacement nodes logicPrescribe=Cb==6; %Logic for current face set Fr=Fb(logicPrescribe,:); %The current face set bcPrescribeList=unique(Fr(:)); %Node set part of selected face
Visualizing boundary conditions. Markers plotted on the semi-transparent model denote the nodes in the various boundary condition lists.
hf=cFigure; title('Boundary conditions','FontSize',fontSize); xlabel('X','FontSize',fontSize); ylabel('Y','FontSize',fontSize); zlabel('Z','FontSize',fontSize); hold on; gpatch(Fb,V,'kw','k',0.5); hl(1)=plotV(V(bcSupportList,:),'k.','MarkerSize',markerSize); hl(2)=plotV(V(bcPrescribeList,:),'r.','MarkerSize',markerSize); legend(hl,{'BC support','BC prescribe'}); axisGeom(gca,fontSize); camlight headlight; drawnow;
Defining the FEBio input structure
See also febioStructTemplate and febioStruct2xml and the FEBio user manual.
%Get a template with default settings [febio_spec]=febioStructTemplate; %febio_spec version febio_spec.ATTR.version='4.0'; %Module section febio_spec.Module.ATTR.type='solid'; %Create control structure for use by all steps stepStruct.Control.analysis='STATIC'; stepStruct.Control.time_steps=numTimeSteps; stepStruct.Control.step_size=1/numTimeSteps; stepStruct.Control.solver.max_refs=max_refs; stepStruct.Control.time_stepper.dtmin=dtmin; stepStruct.Control.time_stepper.dtmax=dtmax; stepStruct.Control.time_stepper.max_retries=max_retries; stepStruct.Control.time_stepper.opt_iter=opt_iter; %Add template based default settings to proposed control section [stepStruct.Control]=structComplete(stepStruct.Control,febio_spec.Control,1); %Complement provided with default if missing %Remove control field (part of template) since step specific control sections are used febio_spec=rmfield(febio_spec,'Control'); febio_spec.Step.step{1}.Control=stepStruct.Control; febio_spec.Step.step{1}.ATTR.id=1; febio_spec.Step.step{2}.Control=stepStruct.Control; febio_spec.Step.step{2}.ATTR.id=2; %Material section materialName1='Normal_material'; febio_spec.Material.material{1}.ATTR.name=materialName1; febio_spec.Material.material{1}.ATTR.id=1; febio_spec.Material.material{1}.ATTR.type='Ogden unconstrained'; febio_spec.Material.material{1}.c1=c1; febio_spec.Material.material{1}.m1=m1; febio_spec.Material.material{1}.c2=c1; febio_spec.Material.material{1}.m2=-m1; febio_spec.Material.material{1}.cp=k; materialName2='Multigen_material'; febio_spec.Material.material{2}.ATTR.name=materialName2; febio_spec.Material.material{2}.ATTR.id=2; febio_spec.Material.material{2}.ATTR.type='multigeneration'; febio_spec.Material.material{2}.generation{1}.ATTR.id=1; febio_spec.Material.material{2}.generation{1}.start_time=0; febio_spec.Material.material{2}.generation{1}.solid{1}.ATTR.type='Ogden unconstrained'; febio_spec.Material.material{2}.generation{1}.solid{1}.c1=c1_g(1); febio_spec.Material.material{2}.generation{1}.solid{1}.m1=m1; febio_spec.Material.material{2}.generation{1}.solid{1}.c2=c1_g(1); febio_spec.Material.material{2}.generation{1}.solid{1}.m2=-m1; febio_spec.Material.material{2}.generation{1}.solid{1}.cp=k_g(1); febio_spec.Material.material{2}.generation{2}.ATTR.id=2; febio_spec.Material.material{2}.generation{2}.start_time=1; febio_spec.Material.material{2}.generation{2}.solid{1}.ATTR.type='Ogden unconstrained'; febio_spec.Material.material{2}.generation{2}.solid{1}.c1=c1_g(2); febio_spec.Material.material{2}.generation{2}.solid{1}.m1=m1; febio_spec.Material.material{2}.generation{2}.solid{1}.c2=c1_g(2); febio_spec.Material.material{2}.generation{2}.solid{1}.m2=-m1; febio_spec.Material.material{2}.generation{2}.solid{1}.cp=k_g(2); %Mesh section % -> Nodes febio_spec.Mesh.Nodes{1}.ATTR.name='nodeSet_all'; %The node set name febio_spec.Mesh.Nodes{1}.node.ATTR.id=(1:size(V,1))'; %The node id's febio_spec.Mesh.Nodes{1}.node.VAL=V; %The nodel coordinates % -> Elements partName1='Part1'; febio_spec.Mesh.Elements{1}.ATTR.name=partName1; %Name of this part febio_spec.Mesh.Elements{1}.ATTR.type='hex8'; %Element type febio_spec.Mesh.Elements{1}.elem.ATTR.id=(1:1:nnz(elementMaterialID==1))'; %Element id's febio_spec.Mesh.Elements{1}.elem.VAL=E(elementMaterialID==1,:); partName2='Part2'; febio_spec.Mesh.Elements{2}.ATTR.name=partName2; %Name of this part febio_spec.Mesh.Elements{2}.ATTR.type='hex8'; %Element type febio_spec.Mesh.Elements{2}.elem.ATTR.id=(1+nnz(elementMaterialID==1):1:nnz(elementMaterialID==1)+nnz(elementMaterialID==2))'; %Element id's febio_spec.Mesh.Elements{2}.elem.VAL=E(elementMaterialID==2,:); % -> NodeSets nodeSetName1='bcSupportList'; febio_spec.Mesh.NodeSet{1}.ATTR.name=nodeSetName1; febio_spec.Mesh.NodeSet{1}.VAL=mrow(bcSupportList); nodeSetName2='bcPrescribeList'; febio_spec.Mesh.NodeSet{2}.ATTR.name=nodeSetName2; febio_spec.Mesh.NodeSet{2}.VAL=mrow(bcPrescribeList); %MeshDomains section febio_spec.MeshDomains.SolidDomain{1}.ATTR.name=partName1; febio_spec.MeshDomains.SolidDomain{1}.ATTR.mat=materialName1; febio_spec.MeshDomains.SolidDomain{2}.ATTR.name=partName2; febio_spec.MeshDomains.SolidDomain{2}.ATTR.mat=materialName2; %Boundary condition section % -> Fix boundary conditions febio_spec.Boundary.bc{1}.ATTR.name='FixedDisplacement01'; febio_spec.Boundary.bc{1}.ATTR.type='zero displacement'; febio_spec.Boundary.bc{1}.ATTR.node_set=nodeSetName1; febio_spec.Boundary.bc{1}.x_dof=1; febio_spec.Boundary.bc{1}.y_dof=1; febio_spec.Boundary.bc{1}.z_dof=1; %STEP 1 Tension febio_spec.Step.step{1}.Boundary.bc{1}.ATTR.name='bcPrescribeList01'; febio_spec.Step.step{1}.Boundary.bc{1}.ATTR.type='prescribed displacement'; febio_spec.Step.step{1}.Boundary.bc{1}.ATTR.node_set=nodeSetName2; febio_spec.Step.step{1}.Boundary.bc{1}.dof='z'; febio_spec.Step.step{1}.Boundary.bc{1}.value.ATTR.lc=1; febio_spec.Step.step{1}.Boundary.bc{1}.value.VAL=displacementMagnitude; febio_spec.Step.step{1}.Boundary.bc{1}.relative=1; febio_spec.Step.step{1}.Boundary.bc{2}.ATTR.name='FixedDisplacement02'; febio_spec.Step.step{1}.Boundary.bc{2}.ATTR.type='zero displacement'; febio_spec.Step.step{1}.Boundary.bc{2}.ATTR.node_set=nodeSetName2; febio_spec.Step.step{1}.Boundary.bc{2}.x_dof=1; febio_spec.Step.step{1}.Boundary.bc{2}.y_dof=1; febio_spec.Step.step{1}.Boundary.bc{2}.z_dof=0; %STEP 2 Return form tension febio_spec.Step.step{2}.Boundary.bc{1}.ATTR.name='bcPrescribeList02'; febio_spec.Step.step{2}.Boundary.bc{1}.ATTR.type='prescribed displacement'; febio_spec.Step.step{2}.Boundary.bc{1}.ATTR.node_set=nodeSetName2; febio_spec.Step.step{2}.Boundary.bc{1}.dof='z'; febio_spec.Step.step{2}.Boundary.bc{1}.value.ATTR.lc=2; febio_spec.Step.step{2}.Boundary.bc{1}.value.VAL=-displacementMagnitude; febio_spec.Step.step{2}.Boundary.bc{1}.relative=1; febio_spec.Step.step{2}.Boundary.bc{2}.ATTR.name='FixedDisplacement03'; febio_spec.Step.step{2}.Boundary.bc{2}.ATTR.type='zero displacement'; febio_spec.Step.step{2}.Boundary.bc{2}.ATTR.node_set=nodeSetName2; febio_spec.Step.step{2}.Boundary.bc{2}.x_dof=1; febio_spec.Step.step{2}.Boundary.bc{2}.y_dof=1; febio_spec.Step.step{2}.Boundary.bc{2}.z_dof=0; %LoadData section % -> load_controller febio_spec.LoadData.load_controller{1}.ATTR.name='LC1'; febio_spec.LoadData.load_controller{1}.ATTR.id=1; febio_spec.LoadData.load_controller{1}.ATTR.type='loadcurve'; febio_spec.LoadData.load_controller{1}.interpolate='LINEAR'; febio_spec.LoadData.load_controller{1}.extend='CONSTANT'; febio_spec.LoadData.load_controller{1}.points.pt.VAL=[0 0; 1 1]; febio_spec.LoadData.load_controller{2}.ATTR.name='LC2'; febio_spec.LoadData.load_controller{2}.ATTR.id=2; febio_spec.LoadData.load_controller{2}.ATTR.type='loadcurve'; febio_spec.LoadData.load_controller{2}.interpolate='LINEAR'; febio_spec.LoadData.load_controller{2}.extend='CONSTANT'; febio_spec.LoadData.load_controller{2}.points.pt.VAL=[1 0; 2 1]; %Output section % -> log file febio_spec.Output.logfile.ATTR.file=febioLogFileName; febio_spec.Output.logfile.node_data{1}.ATTR.file=febioLogFileName_disp; febio_spec.Output.logfile.node_data{1}.ATTR.data='ux;uy;uz'; febio_spec.Output.logfile.node_data{1}.ATTR.delim=','; febio_spec.Output.logfile.element_data{1}.ATTR.file=febioLogFileName_strainEnergy; febio_spec.Output.logfile.element_data{1}.ATTR.data='sed'; febio_spec.Output.logfile.element_data{1}.ATTR.delim=','; febio_spec.Output.plotfile.compression=0;
Quick viewing of the FEBio input file structure
The febView function can be used to view the xml structure in a MATLAB figure window.
febView(febio_spec); %Viewing the febio file
Exporting the FEBio input file
Exporting the febio_spec structure to an FEBio input file is done using the febioStruct2xml function.
febioStruct2xml(febio_spec,febioFebFileName); %Exporting to file and domNode
Running the FEBio analysis
To run the analysis defined by the created FEBio input file the runMonitorFEBio function is used. The input for this function is a structure defining job settings e.g. the FEBio input file name. The optional output runFlag informs the user if the analysis was run succesfully.
febioAnalysis.run_filename=febioFebFileName; %The input file name febioAnalysis.run_logname=febioLogFileName; %The name for the log file febioAnalysis.disp_on=1; %Display information on the command window febioAnalysis.runMode=runMode; [runFlag]=runMonitorFEBio(febioAnalysis);%START FEBio NOW!!!!!!!!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% --------> RUNNING/MONITORING FEBIO JOB <-------- 20-Apr-2023 10:40:46 FEBio path: /home/kevin/FEBioStudio2/bin/febio4 # Attempt removal of existing log files 20-Apr-2023 10:40:46 * Removal succesful 20-Apr-2023 10:40:46 # Attempt removal of existing .xplt files 20-Apr-2023 10:40:46 * Removal succesful 20-Apr-2023 10:40:46 # Starting FEBio... 20-Apr-2023 10:40:46 Max. total analysis time is: Inf s * Waiting for log file creation 20-Apr-2023 10:40:46 Max. wait time: 30 s * Log file found. 20-Apr-2023 10:40:46 # Parsing log file... 20-Apr-2023 10:40:46 number of iterations : 3 20-Apr-2023 10:40:47 number of reformations : 3 20-Apr-2023 10:40:47 ------- converged at time : 0.1 20-Apr-2023 10:40:47 number of iterations : 3 20-Apr-2023 10:40:47 number of reformations : 3 20-Apr-2023 10:40:47 ------- converged at time : 0.2 20-Apr-2023 10:40:47 number of iterations : 3 20-Apr-2023 10:40:47 number of reformations : 3 20-Apr-2023 10:40:47 ------- converged at time : 0.3 20-Apr-2023 10:40:47 number of iterations : 3 20-Apr-2023 10:40:47 number of reformations : 3 20-Apr-2023 10:40:47 ------- converged at time : 0.4 20-Apr-2023 10:40:47 number of iterations : 3 20-Apr-2023 10:40:47 number of reformations : 3 20-Apr-2023 10:40:47 ------- converged at time : 0.5 20-Apr-2023 10:40:47 number of iterations : 3 20-Apr-2023 10:40:47 number of reformations : 3 20-Apr-2023 10:40:47 ------- converged at time : 0.6 20-Apr-2023 10:40:47 number of iterations : 3 20-Apr-2023 10:40:48 number of reformations : 3 20-Apr-2023 10:40:48 ------- converged at time : 0.7 20-Apr-2023 10:40:48 number of iterations : 3 20-Apr-2023 10:40:48 number of reformations : 3 20-Apr-2023 10:40:48 ------- converged at time : 0.8 20-Apr-2023 10:40:48 number of iterations : 3 20-Apr-2023 10:40:48 number of reformations : 3 20-Apr-2023 10:40:48 ------- converged at time : 0.9 20-Apr-2023 10:40:48 number of iterations : 3 20-Apr-2023 10:40:48 number of reformations : 3 20-Apr-2023 10:40:48 ------- converged at time : 1 20-Apr-2023 10:40:48 number of iterations : 3 20-Apr-2023 10:40:48 number of reformations : 3 20-Apr-2023 10:40:48 ------- converged at time : 1.1 20-Apr-2023 10:40:48 number of iterations : 3 20-Apr-2023 10:40:48 number of reformations : 3 20-Apr-2023 10:40:48 ------- converged at time : 1.2 20-Apr-2023 10:40:48 number of iterations : 3 20-Apr-2023 10:40:48 number of reformations : 3 20-Apr-2023 10:40:48 ------- converged at time : 1.3 20-Apr-2023 10:40:48 number of iterations : 3 20-Apr-2023 10:40:49 number of reformations : 3 20-Apr-2023 10:40:49 ------- converged at time : 1.4 20-Apr-2023 10:40:49 number of iterations : 3 20-Apr-2023 10:40:49 number of reformations : 3 20-Apr-2023 10:40:49 ------- converged at time : 1.5 20-Apr-2023 10:40:49 number of iterations : 3 20-Apr-2023 10:40:49 number of reformations : 3 20-Apr-2023 10:40:49 ------- converged at time : 1.6 20-Apr-2023 10:40:49 number of iterations : 3 20-Apr-2023 10:40:49 number of reformations : 3 20-Apr-2023 10:40:49 ------- converged at time : 1.7 20-Apr-2023 10:40:49 number of iterations : 3 20-Apr-2023 10:40:49 number of reformations : 3 20-Apr-2023 10:40:49 ------- converged at time : 1.8 20-Apr-2023 10:40:49 number of iterations : 3 20-Apr-2023 10:40:50 number of reformations : 3 20-Apr-2023 10:40:50 ------- converged at time : 1.9 20-Apr-2023 10:40:50 number of iterations : 3 20-Apr-2023 10:40:50 number of reformations : 3 20-Apr-2023 10:40:50 ------- converged at time : 2 20-Apr-2023 10:40:50 Elapsed time : 0:00:03 20-Apr-2023 10:40:50 N O R M A L T E R M I N A T I O N # Done 20-Apr-2023 10:40:50 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Import FEBio results
if runFlag==1 %i.e. a succesful run
Importing nodal displacements from a log file
dataStruct=importFEBio_logfile(fullfile(savePath,febioLogFileName_disp),0,1); %Access data N_disp_mat=dataStruct.data; %Displacement timeVec=dataStruct.time; %Time %Create deformed coordinate set V_DEF=N_disp_mat+repmat(V,[1 1 size(N_disp_mat,3)]);
Importing element stress from a log file
dataStruct=importFEBio_logfile(fullfile(savePath,febioLogFileName_strainEnergy),0,1);
%Access data
E_energy=dataStruct.data;
[F,CF]=element2patch(E,E_energy(:,:,1));
Plotting the simulated results using anim8 to visualize and animate deformations
c1_plot=c1*ones(size(timeVec)); cg_plot=c1_g(1)*ones(size(timeVec)); cg_plot(timeVec>=1)=c1_g(2); % Create basic view and store graphics handle to initiate animation hf=cFigure; %Open figure gtitle([febioFebFileNamePart,': Press play to animate']); subplot(1,2,1); hold on; title('Ogden parameter c_1'); xlabel('Time'); ylabel('c_1'); plot(timeVec,c1_plot,'b-','lineWidth',2); plot(timeVec,cg_plot,'r-','lineWidth',2); hp1=plot(timeVec(1),c1_plot(1),'b.','MarkerSize',50); hp2=plot(timeVec(1),cg_plot(1),'r.','MarkerSize',50); legend([hp1 hp2],'Material 1','Material 2'); axis tight; axis square; set(gca,'fontsize',fontSize); grid on; subplot(1,2,2); hold on; hp3=gpatch(F,V_DEF(:,:,end),CF,'k',1); %Add graphics object to animate gpatch(Fb,V,0.5*ones(1,3),'k',0.25); %A static graphics object colormap(gjet(250)); hc=colorbar; caxis([0 max(E_energy(:))]); axisGeom(gca,fontSize); axis(axisLim(V_DEF)); %Set axis limits statically axis manual; camlight headlight; drawnow; % Set up animation features animStruct.Time=timeVec; %The time vector for qt=1:1:size(N_disp_mat,3) %Loop over time increments DN=N_disp_mat(:,:,qt); %Current displacement DN_magnitude=sqrt(sum(DN.^2,2)); %Current displacement magnitude [~,CF]=element2patch(E,E_energy(:,:,qt)); %Set entries in animation structure animStruct.Handles{qt}=[hp3 hp3 hp1 hp1 hp2 hp2]; %Handles of objects to animate animStruct.Props{qt}={'Vertices','CData','XData','YData','XData','YData'}; %Properties of objects to animate animStruct.Set{qt}={V_DEF(:,:,qt),CF,timeVec(qt),c1_plot(qt),timeVec(qt),cg_plot(qt)}; %Property values for to set in order to animate end anim8(hf,animStruct); %Initiate animation feature drawnow;
end
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-2022 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/.