DEMO_febio_0007_sphere_sliding

Below is a demonstration for:

Contents

Keywords

clear; close all; clc;

Plot settings

fontSize=15;
faceAlpha1=0.8;
faceAlpha2=0.3;
markerSize=40;
markerSize2=20;
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_force=[febioFebFileNamePart,'_force_out.txt']; %Log file name for exporting force
febioLogFileName_stress=[febioFebFileNamePart,'_stress_out.txt']; %Log file name for exporting stress

%Specifying dimensions and number of elements for slab
sampleHeight=5; %Height
sampleWidth=sampleHeight*4; %Width
sampleThickness=sampleHeight*1; %Thickness
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

%Sphere parameters
numRefineStepsSphere=3;
sphereRadius=sampleHeight/2;

%Define applied displacement
sphereIndentationDisplacement=sphereRadius;
sphereSlideDisplacement=sampleWidth-(sphereRadius*2);

%Material parameter set
c1=1e-3; %Shear-modulus-like parameter
m1=2; %Material parameter setting degree of non-linearity
k_factor=100; %Bulk modulus factor
k=c1*k_factor; %Bulk modulus

% FEA control settings
numTimeSteps=20; %Number of time steps desired
max_refs=30; %Max reforms
max_ups=0; %Set to zero to use full-Newton iterations
opt_iter=20; %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';

%Contact parameters
contactInitialOffset=0.1;
contactPenalty=10;
laugon=0;
minaug=1;
maxaug=10;
fric_coeff=0;

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
beamDimensions=[sampleWidth sampleThickness sampleHeight]; %Dimensions
beamElementNumbers=[numElementsWidth numElementsThickness numElementsHeight]; %Number of elements
outputStructType=2; %A structure compatible with mesh view
[meshStruct]=hexMeshBox(beamDimensions,beamElementNumbers,outputStructType);

%Access elements, nodes, and faces from the structure
E1=meshStruct.elements; %The elements
V1=meshStruct.nodes; %The nodes (vertices)
Fb1=meshStruct.facesBoundary; %The boundary faces
Cb1=meshStruct.boundaryMarker; %The "colors" or labels for the boundary faces
elementMaterialIndices=ones(size(E1,1),1); %Element material indices

Creating triangulated sphere surface model

[E2,V2,~]=geoSphere(numRefineStepsSphere,sphereRadius);

%Offset indentor
minV2=min(V2,[],1);
minV1=min(V1,[],1);

V2(:,1)=V2(:,1)-minV2(1)+minV1(1);

V2(:,3)=V2(:,3)-minV2(3)+(sampleHeight/2)+contactInitialOffset;

center_of_mass=mean(V2,1);

Plotting model boundary surfaces and a cut view

hFig=cFigure;

subplot(1,2,1); hold on;
title('Model boundary surfaces and labels','FontSize',fontSize);
gpatch(Fb1,V1,Cb1,'k',faceAlpha1);
gpatch(E2,V2,'kw','k',faceAlpha1);
colormap(gjet(6)); icolorbar;
axisGeom(gca,fontSize);

hs=subplot(1,2,2); hold on;
title('Cut view of solid mesh','FontSize',fontSize);
optionStruct.hFig=[hFig hs];
gpatch(E2,V2,'kw','k',1);
meshView(meshStruct,optionStruct);
axisGeom(gca,fontSize);

drawnow;

Joining node sets

V=[V1;V2;]; %Combined node sets
E2=E2+size(V1,1); %Fixed element indices

Plotting joined geometry

cFigure;
title('Joined node sets','FontSize',fontSize);
xlabel('X','FontSize',fontSize); ylabel('Y','FontSize',fontSize); zlabel('Z','FontSize',fontSize);
hold on;
gpatch(Fb1,V,Cb1,'k',faceAlpha1);
gpatch(E2,V,'kw','k',faceAlpha1);
colormap(gjet(6)); icolorbar;
axisGeom(gca,fontSize);
camlight headlight;
drawnow;

Define contact surfaces

% The rigid master surface of the sphere
F_contact_primary=E2;

% The deformable slave surface of the slab
logicContactSurf1=Cb1==6;
F_contact_secondary=Fb1(logicContactSurf1,:);

% Plotting surface models
cFigure; hold on;
title('Contact sets and normal directions','FontSize',fontSize);

gpatch(Fb1,V,'kw','none',faceAlpha2);
hl(1)=gpatch(F_contact_primary,V,'g','k',1);
patchNormPlot(F_contact_primary,V);
hl(2)=gpatch(F_contact_secondary,V,'b','k',1);
patchNormPlot(F_contact_secondary,V);

legend(hl,{'Master','Slave'});

axisGeom(gca,fontSize);
camlight headlight;
drawnow;

Define boundary conditions

%Supported nodes
Fr=Fb1(Cb1==5,:);
bcSupportList=unique(Fr(:));

Visualize BC's

hf=cFigure;
title('Boundary conditions model','FontSize',fontSize);
xlabel('X','FontSize',fontSize); ylabel('Y','FontSize',fontSize); zlabel('Z','FontSize',fontSize);
hold on;

gpatch(Fb1,V,'w','none',faceAlpha2);

hl2(1)=gpatch(E2,V,'gw','k',1);
hl2(2)=plotV(V(bcSupportList,:),'k.','MarkerSize',markerSize);

legend(hl2,{'Rigid body sphere','BC support'});

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='3.0';

%Module section
febio_spec.Module.ATTR.type='solid';

%Create control structure for use by all steps
febio_spec.Control.analysis='STATIC';
stepStruct.Control.time_steps=numTimeSteps;
stepStruct.Control.step_size=1/numTimeSteps;
stepStruct.Control.solver.max_refs=max_refs;
stepStruct.Control.solver.max_ups=max_ups;
stepStruct.Control.solver.symmetric_stiffness=0;
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='Material1';
febio_spec.Material.material{1}.ATTR.name=materialName1;
febio_spec.Material.material{1}.ATTR.type='Ogden';
febio_spec.Material.material{1}.ATTR.id=1;
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}.k=k;

materialName2='Material2';
febio_spec.Material.material{2}.ATTR.name=materialName2;
febio_spec.Material.material{2}.ATTR.type='rigid body';
febio_spec.Material.material{2}.ATTR.id=2;
febio_spec.Material.material{2}.density=1;
febio_spec.Material.material{2}.center_of_mass=center_of_mass;

%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:size(E1,1))'; %Element id's
febio_spec.Mesh.Elements{1}.elem.VAL=E1; %The element matrix

partName2='Part2';
febio_spec.Mesh.Elements{2}.ATTR.name=partName2; %Name of this part
febio_spec.Mesh.Elements{2}.ATTR.type='tri3'; %Element type
febio_spec.Mesh.Elements{2}.elem.ATTR.id=size(E1,1)+(1:1:size(E2,1))'; %Element id's
febio_spec.Mesh.Elements{2}.elem.VAL=E2; %The element matrix

% -> NodeSets
nodeSetName1='bcSupportList';
febio_spec.Mesh.NodeSet{1}.ATTR.name=nodeSetName1;
febio_spec.Mesh.NodeSet{1}.node.ATTR.id=bcSupportList(:);

%MeshDomains section
febio_spec.MeshDomains.SolidDomain.ATTR.name=partName1;
febio_spec.MeshDomains.SolidDomain.ATTR.mat=materialName1;

febio_spec.MeshDomains.ShellDomain.ATTR.name=partName2;
febio_spec.MeshDomains.ShellDomain.ATTR.mat=materialName2;

% -> Surfaces
surfaceName1='contactSurface1';
febio_spec.Mesh.Surface{1}.ATTR.name=surfaceName1;
febio_spec.Mesh.Surface{1}.tri3.ATTR.id=(1:1:size(F_contact_primary,1))';
febio_spec.Mesh.Surface{1}.tri3.VAL=F_contact_primary;

surfaceName2='contactSurface2';
febio_spec.Mesh.Surface{2}.ATTR.name=surfaceName2;
febio_spec.Mesh.Surface{2}.quad4.ATTR.id=(1:1:size(F_contact_secondary,1))';
febio_spec.Mesh.Surface{2}.quad4.VAL=F_contact_secondary;

% -> Surface pairs
febio_spec.Mesh.SurfacePair{1}.ATTR.name='Contact1';
febio_spec.Mesh.SurfacePair{1}.primary=surfaceName1;
febio_spec.Mesh.SurfacePair{1}.secondary=surfaceName2;

%Boundary condition section
% -> Fix boundary conditions
febio_spec.Boundary.bc{1}.ATTR.type='fix';
febio_spec.Boundary.bc{1}.ATTR.node_set=nodeSetName1;
febio_spec.Boundary.bc{1}.dofs='x,y,z';

%Rigid section
% -> Prescribed rigid body boundary conditions
febio_spec.Step.step{1}.Rigid.rigid_constraint{1}.ATTR.name='RigidFix_1';
febio_spec.Step.step{1}.Rigid.rigid_constraint{1}.ATTR.type='fix';
febio_spec.Step.step{1}.Rigid.rigid_constraint{1}.rb=2;
febio_spec.Step.step{1}.Rigid.rigid_constraint{1}.dofs='Rx,Ry';

febio_spec.Step.step{1}.Rigid.rigid_constraint{2}.ATTR.name='RigidPrescribe';
febio_spec.Step.step{1}.Rigid.rigid_constraint{2}.ATTR.type='prescribe';
febio_spec.Step.step{1}.Rigid.rigid_constraint{2}.rb=2;
febio_spec.Step.step{1}.Rigid.rigid_constraint{2}.dof='Rz';
febio_spec.Step.step{1}.Rigid.rigid_constraint{2}.value.ATTR.lc=1;
febio_spec.Step.step{1}.Rigid.rigid_constraint{2}.value.VAL=-(sphereIndentationDisplacement+contactInitialOffset);
febio_spec.Step.step{1}.Rigid.rigid_constraint{2}.relative=0;

febio_spec.Step.step{2}.Rigid.rigid_constraint{1}.ATTR.name='RigidFix_1';
febio_spec.Step.step{2}.Rigid.rigid_constraint{1}.ATTR.type='fix';
febio_spec.Step.step{2}.Rigid.rigid_constraint{1}.rb=2;
febio_spec.Step.step{2}.Rigid.rigid_constraint{1}.dofs='Ry,Rz';

febio_spec.Step.step{2}.Rigid.rigid_constraint{2}.ATTR.name='RigidPrescribe';
febio_spec.Step.step{2}.Rigid.rigid_constraint{2}.ATTR.type='prescribe';
febio_spec.Step.step{2}.Rigid.rigid_constraint{2}.rb=2;
febio_spec.Step.step{2}.Rigid.rigid_constraint{2}.dof='Rx';
febio_spec.Step.step{2}.Rigid.rigid_constraint{2}.value.ATTR.lc=2;
febio_spec.Step.step{2}.Rigid.rigid_constraint{2}.value.VAL=sphereSlideDisplacement;
% febio_spec.Step.step{2}.Rigid.rigid_constraint{2}.relative=1;

%Contact section
febio_spec.Contact.contact{1}.ATTR.type='sliding-elastic';
febio_spec.Contact.contact{1}.ATTR.surface_pair=febio_spec.Mesh.SurfacePair{1}.ATTR.name;
febio_spec.Contact.contact{1}.two_pass=1;
febio_spec.Contact.contact{1}.laugon=laugon;
febio_spec.Contact.contact{1}.tolerance=0.2;
febio_spec.Contact.contact{1}.gaptol=0;
febio_spec.Contact.contact{1}.minaug=minaug;
febio_spec.Contact.contact{1}.maxaug=maxaug;
febio_spec.Contact.contact{1}.search_tol=0.01;
febio_spec.Contact.contact{1}.search_radius=0.1;
febio_spec.Contact.contact{1}.symmetric_stiffness=0;
febio_spec.Contact.contact{1}.auto_penalty=1;
febio_spec.Contact.contact{1}.penalty=contactPenalty;
febio_spec.Contact.contact{1}.fric_coeff=fric_coeff;

%LoadData section
% -> load_controller
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}.points.point.VAL=[0 0; 1 1; 2 1];

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}.points.point.VAL=[0 0; 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.node_data{1}.VAL=1:size(V,1);

febio_spec.Output.logfile.node_data{2}.ATTR.file=febioLogFileName_force;
febio_spec.Output.logfile.node_data{2}.ATTR.data='Rx;Ry;Rz';
febio_spec.Output.logfile.node_data{2}.ATTR.delim=',';
febio_spec.Output.logfile.node_data{2}.VAL=1:size(V,1);

febio_spec.Output.logfile.element_data{1}.ATTR.file=febioLogFileName_stress;
febio_spec.Output.logfile.element_data{1}.ATTR.data='s3';
febio_spec.Output.logfile.element_data{1}.ATTR.delim=',';
febio_spec.Output.logfile.element_data{1}.VAL=1:size(E1,1);

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    <-------- 11-Dec-2020 12:18:58
FEBio path: /home/kevin/FEBioStudio/bin/febio3
# Attempt removal of existing log files                11-Dec-2020 12:18:58
 * Removal succesful                                   11-Dec-2020 12:18:59
# Attempt removal of existing .xplt files              11-Dec-2020 12:18:59
 * Removal succesful                                   11-Dec-2020 12:18:59
# Starting FEBio...                                    11-Dec-2020 12:18:59
  Max. total analysis time is: Inf s
 * Waiting for log file creation                       11-Dec-2020 12:18:59
   Max. wait time: 30 s
 * Log file found.                                     11-Dec-2020 12:18:59
# Parsing log file...                                  11-Dec-2020 12:18:59
    number of iterations   : 1                         11-Dec-2020 12:18:59
    number of reformations : 1                         11-Dec-2020 12:18:59
------- converged at time : 0.05                       11-Dec-2020 12:18:59
    number of iterations   : 9                         11-Dec-2020 12:19:00
    number of reformations : 9                         11-Dec-2020 12:19:00
------- converged at time : 0.1                        11-Dec-2020 12:19:00
    number of iterations   : 13                        11-Dec-2020 12:19:00
    number of reformations : 13                        11-Dec-2020 12:19:00
------- converged at time : 0.15                       11-Dec-2020 12:19:00
    number of iterations   : 14                        11-Dec-2020 12:19:01
    number of reformations : 14                        11-Dec-2020 12:19:01
------- converged at time : 0.2                        11-Dec-2020 12:19:01
    number of iterations   : 15                        11-Dec-2020 12:19:02
    number of reformations : 15                        11-Dec-2020 12:19:02
------- converged at time : 0.25                       11-Dec-2020 12:19:02
    number of iterations   : 6                         11-Dec-2020 12:19:03
    number of reformations : 6                         11-Dec-2020 12:19:03
------- converged at time : 0.3                        11-Dec-2020 12:19:03
    number of iterations   : 6                         11-Dec-2020 12:19:03
    number of reformations : 6                         11-Dec-2020 12:19:03
------- converged at time : 0.35                       11-Dec-2020 12:19:03
    number of iterations   : 4                         11-Dec-2020 12:19:04
    number of reformations : 4                         11-Dec-2020 12:19:04
------- converged at time : 0.4                        11-Dec-2020 12:19:04
    number of iterations   : 4                         11-Dec-2020 12:19:04
    number of reformations : 4                         11-Dec-2020 12:19:04
------- converged at time : 0.45                       11-Dec-2020 12:19:04
    number of iterations   : 5                         11-Dec-2020 12:19:04
    number of reformations : 5                         11-Dec-2020 12:19:04
------- converged at time : 0.5                        11-Dec-2020 12:19:04
    number of iterations   : 5                         11-Dec-2020 12:19:05
    number of reformations : 5                         11-Dec-2020 12:19:05
------- converged at time : 0.55                       11-Dec-2020 12:19:05
    number of iterations   : 5                         11-Dec-2020 12:19:05
    number of reformations : 5                         11-Dec-2020 12:19:05
------- converged at time : 0.6                        11-Dec-2020 12:19:05
    number of iterations   : 5                         11-Dec-2020 12:19:05
    number of reformations : 5                         11-Dec-2020 12:19:05
------- converged at time : 0.65                       11-Dec-2020 12:19:05
    number of iterations   : 5                         11-Dec-2020 12:19:06
    number of reformations : 5                         11-Dec-2020 12:19:06
------- converged at time : 0.7                        11-Dec-2020 12:19:06
    number of iterations   : 5                         11-Dec-2020 12:19:06
    number of reformations : 5                         11-Dec-2020 12:19:06
------- converged at time : 0.75                       11-Dec-2020 12:19:06
    number of iterations   : 5                         11-Dec-2020 12:19:06
    number of reformations : 5                         11-Dec-2020 12:19:06
------- converged at time : 0.8                        11-Dec-2020 12:19:06
    number of iterations   : 7                         11-Dec-2020 12:19:07
    number of reformations : 7                         11-Dec-2020 12:19:07
------- converged at time : 0.85                       11-Dec-2020 12:19:07
    number of iterations   : 5                         11-Dec-2020 12:19:07
    number of reformations : 5                         11-Dec-2020 12:19:07
------- converged at time : 0.9                        11-Dec-2020 12:19:07
    number of iterations   : 8                         11-Dec-2020 12:19:08
    number of reformations : 8                         11-Dec-2020 12:19:08
------- converged at time : 0.95                       11-Dec-2020 12:19:08
    number of iterations   : 5                         11-Dec-2020 12:19:08
    number of reformations : 5                         11-Dec-2020 12:19:08
------- converged at time : 1                          11-Dec-2020 12:19:08
    number of iterations   : 11                        11-Dec-2020 12:19:09
    number of reformations : 11                        11-Dec-2020 12:19:09
------- converged at time : 1.04167                    11-Dec-2020 12:19:09
    number of iterations   : 11                        11-Dec-2020 12:19:10
    number of reformations : 11                        11-Dec-2020 12:19:10
------- converged at time : 1.085                      11-Dec-2020 12:19:10
    number of iterations   : 12                        11-Dec-2020 12:19:11
    number of reformations : 12                        11-Dec-2020 12:19:11
------- converged at time : 1.12967                    11-Dec-2020 12:19:11
    number of iterations   : 12                        11-Dec-2020 12:19:12
    number of reformations : 12                        11-Dec-2020 12:19:12
------- converged at time : 1.16778                    11-Dec-2020 12:19:12
    number of iterations   : 11                        11-Dec-2020 12:19:12
    number of reformations : 11                        11-Dec-2020 12:19:12
------- converged at time : 1.20827                    11-Dec-2020 12:19:12
    number of iterations   : 10                        11-Dec-2020 12:19:13
    number of reformations : 10                        11-Dec-2020 12:19:13
------- converged at time : 1.25066                    11-Dec-2020 12:19:13
    number of iterations   : 12                        11-Dec-2020 12:19:14
    number of reformations : 12                        11-Dec-2020 12:19:14
------- converged at time : 1.29457                    11-Dec-2020 12:19:14
    number of iterations   : 10                        11-Dec-2020 12:19:14
    number of reformations : 10                        11-Dec-2020 12:19:14
------- converged at time : 1.33218                    11-Dec-2020 12:19:14
    number of iterations   : 11                        11-Dec-2020 12:19:15
    number of reformations : 11                        11-Dec-2020 12:19:15
------- converged at time : 1.37227                    11-Dec-2020 12:19:15
    number of iterations   : 10                        11-Dec-2020 12:19:16
    number of reformations : 10                        11-Dec-2020 12:19:16
------- converged at time : 1.40732                    11-Dec-2020 12:19:16
    number of iterations   : 11                        11-Dec-2020 12:19:17
    number of reformations : 11                        11-Dec-2020 12:19:17
------- converged at time : 1.44537                    11-Dec-2020 12:19:17
    number of iterations   : 11                        11-Dec-2020 12:19:17
    number of reformations : 11                        11-Dec-2020 12:19:17
------- converged at time : 1.48581                    11-Dec-2020 12:19:17
    number of iterations   : 11                        11-Dec-2020 12:19:18
    number of reformations : 11                        11-Dec-2020 12:19:18
------- converged at time : 1.52816                    11-Dec-2020 12:19:18
    number of iterations   : 12                        11-Dec-2020 12:19:19
    number of reformations : 12                        11-Dec-2020 12:19:19
------- converged at time : 1.57204                    11-Dec-2020 12:19:19
    number of iterations   : 11                        11-Dec-2020 12:19:19
    number of reformations : 11                        11-Dec-2020 12:19:19
------- converged at time : 1.60962                    11-Dec-2020 12:19:19
    number of iterations   : 10                        11-Dec-2020 12:19:20
    number of reformations : 10                        11-Dec-2020 12:19:20
------- converged at time : 1.64969                    11-Dec-2020 12:19:20
    number of iterations   : 11                        11-Dec-2020 12:19:21
    number of reformations : 11                        11-Dec-2020 12:19:21
------- converged at time : 1.69175                    11-Dec-2020 12:19:21
    number of iterations   : 11                        11-Dec-2020 12:19:21
    number of reformations : 11                        11-Dec-2020 12:19:21
------- converged at time : 1.73539                    11-Dec-2020 12:19:21
    number of iterations   : 12                        11-Dec-2020 12:19:22
    number of reformations : 12                        11-Dec-2020 12:19:22
------- converged at time : 1.78031                    11-Dec-2020 12:19:22
    number of iterations   : 11                        11-Dec-2020 12:19:23
    number of reformations : 11                        11-Dec-2020 12:19:23
------- converged at time : 1.81858                    11-Dec-2020 12:19:23
    number of iterations   : 13                        11-Dec-2020 12:19:24
    number of reformations : 13                        11-Dec-2020 12:19:24
------- converged at time : 1.85921                    11-Dec-2020 12:19:24
    number of iterations   : 11                        11-Dec-2020 12:19:24
    number of reformations : 11                        11-Dec-2020 12:19:24
------- converged at time : 1.9017                     11-Dec-2020 12:19:24
    number of iterations   : 12                        11-Dec-2020 12:19:25
    number of reformations : 12                        11-Dec-2020 12:19:25
------- converged at time : 1.93837                    11-Dec-2020 12:19:25
    number of iterations   : 11                        11-Dec-2020 12:19:26
    number of reformations : 11                        11-Dec-2020 12:19:26
------- converged at time : 1.9777                     11-Dec-2020 12:19:26
    number of iterations   : 12                        11-Dec-2020 12:19:27
    number of reformations : 12                        11-Dec-2020 12:19:27
------- converged at time : 2                          11-Dec-2020 12:19:27
 Elapsed time : 0:00:28                                11-Dec-2020 12:19:27
 N O R M A L   T E R M I N A T I O N
# Done                                                 11-Dec-2020 12:19:27
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

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),1,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_stress),1,1);

    %Access data
    E_stress_mat=dataStruct.data;
    E_stress_mat(isnan(E_stress_mat))=0;

Plotting the simulated results using anim8 to visualize and animate deformations

    [CV]=faceToVertexMeasure(E1,V,E_stress_mat(:,:,end));

    % Create basic view and store graphics handle to initiate animation
    hf=cFigure; %Open figure
    gtitle([febioFebFileNamePart,': Press play to animate']);
    title('$\sigma_{3}$ [MPa]','Interpreter','Latex')
    hp=gpatch(Fb1,V_DEF(:,:,end),CV,'k',1); %Add graphics object to animate
    hp.Marker='.';
    hp.MarkerSize=markerSize2;
    hp.FaceColor='interp';

    hp2=gpatch(E2,V_DEF(:,:,end),'w','none',0.5); %Add graphics object to animate

    axisGeom(gca,fontSize);
    colormap(flipud(gjet(250))); colorbar;
    caxis([min(E_stress_mat(:)) max(E_stress_mat(:))]);
    axis(axisLim(V_DEF)); %Set axis limits statically
    camlight headlight;

    % Set up animation features
    animStruct.Time=timeVec; %The time vector
    for qt=1:1:size(N_disp_mat,3) %Loop over time increments

        [CV]=faceToVertexMeasure(E1,V,E_stress_mat(:,:,qt));

        %Set entries in animation structure
        animStruct.Handles{qt}=[hp hp hp2]; %Handles of objects to animate
        animStruct.Props{qt}={'Vertices','CData','Vertices'}; %Properties of objects to animate
        animStruct.Set{qt}={V_DEF(:,:,qt),CV,V_DEF(:,:,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-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/.