DEMO_febio_0031_blob_shear_contact
Below is a demonstration for:
- Building geometry for a hemi-spherical blob with tetrahedral elements which is being sheared by a rigid wall. This demo consists off:
- Defining the boundary conditions
- Coding the febio structure
- Running the model
- Importing and visualizing the displacement results
Contents
- Keywords
- Plot settings
- Control parameters
- Creating model geometry and mesh
- Creating rigid body ground plate
- Creating rigid body shear surface
- Join model node sets
- Get contact surfaces
- Defining the FEBio input structure
- Quick viewing of the FEBio input file structure
- Exporting the FEBio input file
- Running the FEBio analysis
- Import FEBio results
Keywords
- febio_spec version 3.0
- febio, FEBio
- indentation
- contact, sliding, sticky, friction
- rigid body constraints
- tetrahedral elements, tet4
- triangular elements, tri3
- slab, block, rectangular
- sphere
- static, solid
- hyperelastic, Ogden
- displacement logfile
- stress logfile
clear; close all; clc;
Plot settings
fontSize=15; faceAlpha1=0.8; faceAlpha2=0.3; 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_force=[febioFebFileNamePart,'_force_out.txt']; %Log file name for exporting force % Hemi-sphere parameters hemiSphereRadius=1; nRefine=2; closeOption=1; smoothEdge=1; % Ground plate parameters plateRadius=2*hemiSphereRadius; % Probe parameters probeWidth=3*hemiSphereRadius; filletProbe=0.25; %Fillet radius % Define probe displacement probeDisplacement=hemiSphereRadius*2; probeOverlapFactor=0.4; % Material parameter set c1=1e-3; %Shear-modulus-like parameter m1=2; %Material parameter setting degree of non-linearity k_factor=10; %Bulk modulus factor k=c1*k_factor; %Bulk modulus % FEA control settings numTimeSteps=30; max_refs=25; %Max reforms max_ups=0; %Set to zero to use full-Newton iterations opt_iter=10; %Optimum number of iterations max_retries=25; %Maximum number of retires symmetric_stiffness=0; min_residual=1e-20; step_size=1/numTimeSteps; dtmin=(1/numTimeSteps)/100; %Minimum time step size dtmax=(1/(numTimeSteps)); %Maximum time step size %Contact parameters contactPenalty=1; laugon=0; minaug=1; maxaug=10; fric_coeff=0.01; max_traction=0;
Creating model geometry and mesh
% Create hemi-sphere mesh [F_blob,V_blob,C_blob]=hemiSphereMesh(nRefine,hemiSphereRadius,1); pointSpacingBlob=mean(patchEdgeLengths(F_blob,V_blob)); %Smoothen edges if smoothEdge==1 %Get rigid region ind=1:1:size(V_blob,1); %Indices for all nodes indRigid=find(ismember(ind,F_blob(C_blob==2,:)) & ~ismember(ind,F_blob(C_blob==1,:))); %Indices for new bottom surface nodes %Smoothing cPar.Method='HC'; cPar.n=250; cPar.RigidConstraints=indRigid; [V_blob]=patchSmooth(F_blob,V_blob,[],cPar); %Fix color data with new bottom surface C_blob=ones(size(C_blob)); C_blob(all(ismember(F_blob,indRigid),2))=2; end
Visualize hemi-sphere surface
cFigure; hold on; gtitle('The hemi-sphere surface mesh',fontSize); gpatch(F_blob,V_blob,C_blob,'k',0.85); patchNormPlot(F_blob,V_blob); axisGeom(gca,fontSize); colormap(gjet); icolorbar; camlight headlight; drawnow;

Using tetgen to create a tetrahedral mesh
% Tetgen input structure inputStruct.stringOpt='-pq1.2AaY'; inputStruct.Faces=F_blob; inputStruct.Nodes=V_blob; inputStruct.holePoints=[]; inputStruct.faceBoundaryMarker=C_blob; %Face boundary markers inputStruct.regionPoints=getInnerPoint(F_blob,V_blob); %region points inputStruct.regionA=tetVolMeanEst(F_blob,V_blob); inputStruct.minRegionMarker=2; %Minimum region marker % Create tetrahedral mesh using tetGen [meshOutput]=runTetGen(inputStruct); %Run tetGen % Access model element and patch data Fb_blob=fliplr(meshOutput.facesBoundary); Cb_blob=meshOutput.boundaryMarker; V_blob=meshOutput.nodes; E_blob=meshOutput.elements;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% --- TETGEN Tetrahedral meshing --- 15-Dec-2020 12:33:04 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% --- Writing SMESH file --- 15-Dec-2020 12:33:04 ----> Adding node field ----> Adding facet field ----> Adding holes specification ----> Adding region specification --- Done --- 15-Dec-2020 12:33:04 --- Running TetGen to mesh input boundary--- 15-Dec-2020 12:33:04 Opening /mnt/data/MATLAB/GIBBON/data/temp/temp.smesh. Delaunizing vertices... Delaunay seconds: 0.003682 Creating surface mesh ... Surface mesh seconds: 0.001292 Recovering boundaries... Boundary recovery seconds: 0.001386 Removing exterior tetrahedra ... Spreading region attributes. Exterior tets removal seconds: 0.000394 Recovering Delaunayness... Delaunay recovery seconds: 0.000891 Refining mesh... Refinement seconds: 0.020073 Optimizing mesh... Optimization seconds: 0.001478 Writing /mnt/data/MATLAB/GIBBON/data/temp/temp.1.node. Writing /mnt/data/MATLAB/GIBBON/data/temp/temp.1.ele. Writing /mnt/data/MATLAB/GIBBON/data/temp/temp.1.face. Writing /mnt/data/MATLAB/GIBBON/data/temp/temp.1.edge. Output seconds: 0.016635 Total running seconds: 0.045958 Statistics: Input points: 476 Input facets: 948 Input segments: 1422 Input holes: 0 Input regions: 1 Mesh points: 1646 Mesh tetrahedra: 8835 Mesh faces: 18144 Mesh faces on exterior boundary: 948 Mesh faces on input facets: 948 Mesh edges on input segments: 1422 Steiner points inside domain: 1170 --- Done --- 15-Dec-2020 12:33:04 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% --- Importing TetGen files --- 15-Dec-2020 12:33:04 --- Done --- 15-Dec-2020 12:33:04
Visualize blob mesh
hFig=cFigure; subplot(1,2,1); hold on; gpatch(Fb_blob,V_blob,Cb_blob,'k',1); patchNormPlot(Fb_blob,V_blob); 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_blob,V_blob,'kw','none',0.25); meshView(meshOutput,optionStruct); axisGeom(gca,fontSize); drawnow;

Creating rigid body ground plate
%Get outer surve of ground surface [Eb]=patchBoundary(Fb_blob(Cb_blob==2,:),V_blob); indCurveBottom=edgeListToCurve(Eb); indCurveBottom=indCurveBottom(1:end-1); % Derive point spacing for plate pointSpacingPlate=pointSpacingBlob; % Compose outer curve of the plate nPlateCurve=ceil((2*pi*plateRadius)/pointSpacingPlate); t=linspace(0,2*pi,nPlateCurve); t=t(1:end-1); x=plateRadius.*sin(t); y=plateRadius.*cos(t); Vp_outer_curve=[x(:) y(:)]; % Copy inner curve from the hemi-sphere Vp_inner_curve=V_blob(indCurveBottom,[1 2]); % Create mesh out outer region regionCell={Vp_outer_curve,Vp_inner_curve}; [F_plate,V_plate]=regionTriMesh2D(regionCell,pointSpacingPlate,0,0); V_plate(:,3)=0; %Add z-direction % Copy mesh for inner region [F_plate_inner,V_plate_inner]=patchCleanUnused(fliplr(Fb_blob(Cb_blob==2,:)),V_blob); [F_plate,V_plate,C_plate]=joinElementSets({F_plate,F_plate_inner},{V_plate,V_plate_inner}); [F_plate,V_plate]=mergeVertices(F_plate,V_plate); center_of_mass_plate=mean(V_plate,1);
Visualizing plate mesh
cFigure; hold on; gtitle('The plate surface mesh',fontSize); gpatch(Fb_blob,V_blob,'kw','none',0.5); gpatch(F_plate,V_plate,C_plate,'k',1); patchNormPlot(F_plate,V_plate); axisGeom(gca,fontSize); colormap(gjet); icolorbar; camlight headlight; drawnow;

Creating rigid body shear surface
pointSpacingProbe=pointSpacingBlob/2; %Sketching side profile x=[-hemiSphereRadius hemiSphereRadius hemiSphereRadius]-hemiSphereRadius*2; y=[0 0 0]; z=[hemiSphereRadius*(1-probeOverlapFactor) hemiSphereRadius*(1-probeOverlapFactor) hemiSphereRadius*1.5]; V_probe_curve_sketch=[x(:) y(:) z(:)]; %Fillet sketch np=100; %Number of points used to construct each fillet edge [V_probe_curve]=filletCurve(V_probe_curve_sketch,filletProbe,np,0); numPointsProbeCurve=ceil(max(pathLength(V_probe_curve))/pointSpacingProbe); [V_probe_curve] = evenlySampleCurve(V_probe_curve,numPointsProbeCurve,'pchip',0); % Extruding curve % controlParametersExtrude.pointSpacing=pointSpacingProbe; controlParametersExtrude.depth=hemiSphereRadius*2.5; controlParametersExtrude.numSteps=ceil(controlParametersExtrude.depth/pointSpacingProbe); controlParametersExtrude.numSteps=controlParametersExtrude.numSteps+iseven(controlParametersExtrude.numSteps); %Force uneven controlParametersExtrude.patchType='tri'; controlParametersExtrude.dir=0; controlParametersExtrude.n=[0 1 0]; controlParametersExtrude.closeLoopOpt=0; [F_probe,V_probe]=polyExtrude(V_probe_curve,controlParametersExtrude); F_probe=fliplr(F_probe); %Invert face orientation so normals point to blob center_of_mass_probe=mean(V_probe,1);
Visualizing probe mesh
cFigure; hold on; title('The probe surface mesh','fontSize',fontSize); gpatch(Fb_blob,V_blob,'kw','none',0.5); gpatch(F_plate,V_plate,'kw','none',0.5); hl(1)=plotV(V_probe_curve_sketch,'k.-.','lineWidth',3,'MarkerSize',25); hl(2)=plotV(V_probe_curve,'r-','lineWidth',3,'MarkerSize',25); hl(3)=gpatch(F_probe,V_probe,'gw','k',1); legend(hl,{'Sketched probe curve','Rounded probe curve','Probe surface mesh'}); clear hl; axisGeom(gca,fontSize); camlight headlight; drawnow;

Join model node sets
V=[V_blob; V_plate; V_probe]; F_plate=F_plate+size(V_blob,1); F_probe=F_probe+size(V_blob,1)+size(V_plate,1); Fb_all=[Fb_blob;F_plate;F_probe];
Visualizing model
cFigure; hold on; gtitle('Model components',fontSize); hl(1)=gpatch(Fb_blob,V,'rw','k',0.8); hl(2)=gpatch(F_plate,V,'bw','k',0.8); hl(3)=gpatch(F_probe,V,'gw','k',0.8); legend(hl,{'Blob','Plate','Probe'}); clear hl; axisGeom(gca,fontSize); camlight headlight; drawnow;

Get contact surfaces
% F_contact_blob1=Fb_blob(Cb_blob==1,:); % F_contact_blob2=Fb_blob(Cb_blob==2,:);
Visualize contact surfaces
cFigure; subplot(1,2,1); hold on; title('Probe blob contact pair','fontsize',fontSize); hl(1)=gpatch(F_probe,V,'rw','k',1); patchNormPlot(F_probe,V); hl(2)=gpatch(Fb_blob,V,'gw','k',1); patchNormPlot(Fb_blob,V); legend(hl,{'primary','secondary'}); clear hl; axisGeom(gca,fontSize); camlight headlight; subplot(1,2,2); hold on; title('Plate blob contact pair','fontsize',fontSize); hl(1)=gpatch(F_plate,V,'rw','k',1); patchNormPlot(F_plate,V); hl(2)=gpatch(Fb_blob,V,'gw','k',1); patchNormPlot(Fb_blob,V); legend(hl,{'primary','secondary'}); clear hl; 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'; %Control section febio_spec.Control.analysis='STATIC'; febio_spec.Control.time_steps=numTimeSteps; febio_spec.Control.step_size=1/numTimeSteps; febio_spec.Control.solver.max_refs=max_refs; febio_spec.Control.solver.max_ups=max_ups; febio_spec.Control.solver.symmetric_stiffness=0; febio_spec.Control.time_stepper.dtmin=dtmin; febio_spec.Control.time_stepper.dtmax=dtmax; febio_spec.Control.time_stepper.max_retries=max_retries; febio_spec.Control.time_stepper.opt_iter=opt_iter; %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_plate; materialName3='Material3'; febio_spec.Material.material{3}.ATTR.name=materialName3; febio_spec.Material.material{3}.ATTR.type='rigid body'; febio_spec.Material.material{3}.ATTR.id=3; febio_spec.Material.material{3}.density=1; febio_spec.Material.material{3}.center_of_mass=center_of_mass_probe; %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='tet4'; %Element type febio_spec.Mesh.Elements{1}.elem.ATTR.id=(1:1:size(E_blob,1))'; %Element id's febio_spec.Mesh.Elements{1}.elem.VAL=E_blob; %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(E_blob,1)+(1:1:size(F_plate,1))'; %Element id's febio_spec.Mesh.Elements{2}.elem.VAL=F_plate; partName3='Part3'; febio_spec.Mesh.Elements{3}.ATTR.name=partName3; %Name of this part febio_spec.Mesh.Elements{3}.ATTR.type='tri3'; %Element type febio_spec.Mesh.Elements{3}.elem.ATTR.id=size(E_blob,1)+size(F_plate,1)+(1:1:size(F_probe,1))'; %Element id's febio_spec.Mesh.Elements{3}.elem.VAL=F_probe; %MeshDomains section febio_spec.MeshDomains.SolidDomain{1}.ATTR.name=partName1; febio_spec.MeshDomains.SolidDomain{1}.ATTR.mat=materialName1; febio_spec.MeshDomains.ShellDomain{1}.ATTR.name=partName2; febio_spec.MeshDomains.ShellDomain{1}.ATTR.mat=materialName2; febio_spec.MeshDomains.ShellDomain{2}.ATTR.name=partName3; febio_spec.MeshDomains.ShellDomain{2}.ATTR.mat=materialName3; % % -> Surfaces surfaceName1='contactSurface1'; febio_spec.Mesh.Surface{1}.ATTR.name=surfaceName1; febio_spec.Mesh.Surface{1}.tri3.ATTR.id=(1:1:size(F_plate,1))'; febio_spec.Mesh.Surface{1}.tri3.VAL=F_plate; surfaceName2='contactSurface2'; febio_spec.Mesh.Surface{2}.ATTR.name=surfaceName2; febio_spec.Mesh.Surface{2}.tri3.ATTR.id=(1:1:size(Fb_blob,1))'; febio_spec.Mesh.Surface{2}.tri3.VAL=Fb_blob; surfaceName3='contactSurface3'; febio_spec.Mesh.Surface{3}.ATTR.name=surfaceName3; febio_spec.Mesh.Surface{3}.tri3.ATTR.id=(1:1:size(F_probe,1))'; febio_spec.Mesh.Surface{3}.tri3.VAL=F_probe; surfaceName4='contactSurface4'; febio_spec.Mesh.Surface{4}.ATTR.name=surfaceName4; febio_spec.Mesh.Surface{4}.tri3.ATTR.id=(1:1:size(Fb_blob(Cb_blob==1,:),1))'; febio_spec.Mesh.Surface{4}.tri3.VAL=Fb_blob(Cb_blob==1,:); % -> Surface pairs contactPairName1='Contact1'; febio_spec.Mesh.SurfacePair{1}.ATTR.name=contactPairName1; febio_spec.Mesh.SurfacePair{1}.primary=surfaceName1; febio_spec.Mesh.SurfacePair{1}.secondary=surfaceName2; contactPairName2='Contact2'; febio_spec.Mesh.SurfacePair{2}.ATTR.name=contactPairName2; febio_spec.Mesh.SurfacePair{2}.primary=surfaceName3; febio_spec.Mesh.SurfacePair{2}.secondary=surfaceName4; %Rigid section % -> Prescribed rigid body boundary conditions febio_spec.Rigid.rigid_constraint{1}.ATTR.name='RigidFix_1'; febio_spec.Rigid.rigid_constraint{1}.ATTR.type='fix'; febio_spec.Rigid.rigid_constraint{1}.rb=2; febio_spec.Rigid.rigid_constraint{1}.dofs='Rx,Ry,Rz,Ru,Rv,Rw'; febio_spec.Rigid.rigid_constraint{2}.ATTR.name='RigidFix_2'; febio_spec.Rigid.rigid_constraint{2}.ATTR.type='fix'; febio_spec.Rigid.rigid_constraint{2}.rb=3; febio_spec.Rigid.rigid_constraint{2}.dofs='Ry,Rz,Ru,Rv,Rw'; febio_spec.Rigid.rigid_constraint{3}.ATTR.name='RigidPrescribe'; febio_spec.Rigid.rigid_constraint{3}.ATTR.type='prescribe'; febio_spec.Rigid.rigid_constraint{3}.rb=3; febio_spec.Rigid.rigid_constraint{3}.dof='Rx'; febio_spec.Rigid.rigid_constraint{3}.value.ATTR.lc=1; febio_spec.Rigid.rigid_constraint{3}.value.VAL=probeDisplacement; febio_spec.Rigid.rigid_constraint{3}.relative=0; %Contact section % -> Contact 1 febio_spec.Contact.contact{1}.ATTR.type='sticky'; febio_spec.Contact.contact{1}.ATTR.surface_pair=contactPairName1; febio_spec.Contact.contact{1}.penalty=10; febio_spec.Contact.contact{1}.laugon=0; febio_spec.Contact.contact{1}.tolerance=0.1; febio_spec.Contact.contact{1}.minaug=1; febio_spec.Contact.contact{1}.maxaug=10; febio_spec.Contact.contact{1}.snap_tol=0; febio_spec.Contact.contact{1}.max_traction=max_traction; febio_spec.Contact.contact{1}.search_tolerance=0.1; febio_spec.Contact.contact{2}.ATTR.type='sliding-elastic'; febio_spec.Contact.contact{2}.ATTR.surface_pair=contactPairName2; febio_spec.Contact.contact{2}.two_pass=1; febio_spec.Contact.contact{2}.laugon=laugon; febio_spec.Contact.contact{2}.tolerance=0.2; febio_spec.Contact.contact{2}.gaptol=0; febio_spec.Contact.contact{2}.minaug=minaug; febio_spec.Contact.contact{2}.maxaug=maxaug; febio_spec.Contact.contact{2}.search_tol=0.01; febio_spec.Contact.contact{2}.search_radius=0.1; febio_spec.Contact.contact{2}.symmetric_stiffness=0; febio_spec.Contact.contact{2}.auto_penalty=1; febio_spec.Contact.contact{2}.penalty=contactPenalty; febio_spec.Contact.contact{2}.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]; %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=',';
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='external';%'internal'; [runFlag]=runMonitorFEBio(febioAnalysis);%START FEBio NOW!!!!!!!!
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% --------> RUNNING/MONITORING FEBIO JOB <-------- 15-Dec-2020 12:33:11 FEBio path: /home/kevin/FEBioStudio/bin/febio3 # Attempt removal of existing log files 15-Dec-2020 12:33:11 * Removal succesful 15-Dec-2020 12:33:11 # Attempt removal of existing .xplt files 15-Dec-2020 12:33:11 * Removal succesful 15-Dec-2020 12:33:11 # Starting FEBio... 15-Dec-2020 12:33:11 Max. total analysis time is: Inf s * Waiting for log file creation 15-Dec-2020 12:33:11 Max. wait time: 30 s * Log file found. 15-Dec-2020 12:33:12 # Parsing log file... 15-Dec-2020 12:33:12 number of iterations : 1 15-Dec-2020 12:33:12 number of reformations : 1 15-Dec-2020 12:33:12 ------- converged at time : 0.0333333 15-Dec-2020 12:33:12 number of iterations : 1 15-Dec-2020 12:33:12 number of reformations : 1 15-Dec-2020 12:33:12 ------- converged at time : 0.0666667 15-Dec-2020 12:33:12 number of iterations : 1 15-Dec-2020 12:33:13 number of reformations : 1 15-Dec-2020 12:33:13 ------- converged at time : 0.1 15-Dec-2020 12:33:13 number of iterations : 1 15-Dec-2020 12:33:13 number of reformations : 1 15-Dec-2020 12:33:13 ------- converged at time : 0.133333 15-Dec-2020 12:33:13 number of iterations : 1 15-Dec-2020 12:33:13 number of reformations : 1 15-Dec-2020 12:33:13 ------- converged at time : 0.166667 15-Dec-2020 12:33:13 number of iterations : 5 15-Dec-2020 12:33:14 number of reformations : 5 15-Dec-2020 12:33:14 ------- converged at time : 0.2 15-Dec-2020 12:33:14 number of iterations : 5 15-Dec-2020 12:33:14 number of reformations : 5 15-Dec-2020 12:33:14 ------- converged at time : 0.233333 15-Dec-2020 12:33:14 number of iterations : 5 15-Dec-2020 12:33:15 number of reformations : 5 15-Dec-2020 12:33:15 ------- converged at time : 0.266667 15-Dec-2020 12:33:15 number of iterations : 5 15-Dec-2020 12:33:16 number of reformations : 5 15-Dec-2020 12:33:16 ------- converged at time : 0.3 15-Dec-2020 12:33:16 number of iterations : 6 15-Dec-2020 12:33:17 number of reformations : 6 15-Dec-2020 12:33:17 ------- converged at time : 0.333333 15-Dec-2020 12:33:17 number of iterations : 6 15-Dec-2020 12:33:17 number of reformations : 6 15-Dec-2020 12:33:17 ------- converged at time : 0.366667 15-Dec-2020 12:33:17 number of iterations : 6 15-Dec-2020 12:33:18 number of reformations : 6 15-Dec-2020 12:33:18 ------- converged at time : 0.4 15-Dec-2020 12:33:18 number of iterations : 6 15-Dec-2020 12:33:19 number of reformations : 6 15-Dec-2020 12:33:19 ------- converged at time : 0.433333 15-Dec-2020 12:33:19 number of iterations : 6 15-Dec-2020 12:33:20 number of reformations : 6 15-Dec-2020 12:33:20 ------- converged at time : 0.466667 15-Dec-2020 12:33:20 number of iterations : 6 15-Dec-2020 12:33:20 number of reformations : 6 15-Dec-2020 12:33:20 ------- converged at time : 0.5 15-Dec-2020 12:33:20 number of iterations : 6 15-Dec-2020 12:33:21 number of reformations : 6 15-Dec-2020 12:33:21 ------- converged at time : 0.533333 15-Dec-2020 12:33:21 number of iterations : 7 15-Dec-2020 12:33:22 number of reformations : 7 15-Dec-2020 12:33:22 ------- converged at time : 0.566667 15-Dec-2020 12:33:22 number of iterations : 6 15-Dec-2020 12:33:23 number of reformations : 6 15-Dec-2020 12:33:23 ------- converged at time : 0.6 15-Dec-2020 12:33:23 number of iterations : 7 15-Dec-2020 12:33:24 number of reformations : 7 15-Dec-2020 12:33:24 ------- converged at time : 0.633333 15-Dec-2020 12:33:24 number of iterations : 7 15-Dec-2020 12:33:25 number of reformations : 7 15-Dec-2020 12:33:25 ------- converged at time : 0.666667 15-Dec-2020 12:33:25 number of iterations : 7 15-Dec-2020 12:33:26 number of reformations : 7 15-Dec-2020 12:33:26 ------- converged at time : 0.7 15-Dec-2020 12:33:26 number of iterations : 6 15-Dec-2020 12:33:27 number of reformations : 6 15-Dec-2020 12:33:27 ------- converged at time : 0.733333 15-Dec-2020 12:33:27 number of iterations : 6 15-Dec-2020 12:33:28 number of reformations : 6 15-Dec-2020 12:33:28 ------- converged at time : 0.766667 15-Dec-2020 12:33:28 number of iterations : 6 15-Dec-2020 12:33:29 number of reformations : 6 15-Dec-2020 12:33:29 ------- converged at time : 0.8 15-Dec-2020 12:33:29 number of iterations : 6 15-Dec-2020 12:33:30 number of reformations : 6 15-Dec-2020 12:33:30 ------- converged at time : 0.833333 15-Dec-2020 12:33:30 number of iterations : 6 15-Dec-2020 12:33:31 number of reformations : 6 15-Dec-2020 12:33:31 ------- converged at time : 0.866667 15-Dec-2020 12:33:31 number of iterations : 6 15-Dec-2020 12:33:32 number of reformations : 6 15-Dec-2020 12:33:32 ------- converged at time : 0.9 15-Dec-2020 12:33:32 number of iterations : 6 15-Dec-2020 12:33:33 number of reformations : 6 15-Dec-2020 12:33:33 ------- converged at time : 0.933333 15-Dec-2020 12:33:33 number of iterations : 6 15-Dec-2020 12:33:33 number of reformations : 6 15-Dec-2020 12:33:33 ------- converged at time : 0.966667 15-Dec-2020 12:33:33 number of iterations : 5 15-Dec-2020 12:33:34 number of reformations : 5 15-Dec-2020 12:33:34 ------- converged at time : 1 15-Dec-2020 12:33:34 Elapsed time : 0:00:22 15-Dec-2020 12:33:34 N O R M A L T E R M I N A T I O N # Done 15-Dec-2020 12:33:34 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
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)]);
Plotting the simulated results using anim8 to visualize and animate deformations
DN_magnitude=sqrt(sum(N_disp_mat(:,:,end).^2,2)); %Current displacement magnitude % Create basic view and store graphics handle to initiate animation hf=cFigure; hold on; gtitle([febioFebFileNamePart,': Press play to animate']); hp1=gpatch(Fb_blob,V_DEF(:,:,end),DN_magnitude,'k',1); %Add graphics object to animate hp1.FaceColor='interp'; hp2=gpatch(F_probe,V_DEF(:,:,end),'kw','none',0.5); %Add graphics object to animate hp3=gpatch(F_plate,V_DEF(:,:,end),'kw','none',0.5); %Add graphics object to animate axisGeom(gca,fontSize); colormap(gjet(250)); colorbar; caxis([0 max(DN_magnitude)]/3); axis(axisLim(V_DEF)); %Set axis limits statically 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_magnitude=sqrt(sum(N_disp_mat(:,:,qt).^2,2)); %Current displacement magnitue %Set entries in animation structure animStruct.Handles{qt}=[hp1 hp1 hp2 hp3]; %Handles of objects to animate animStruct.Props{qt}={'Vertices','CData','Vertices','Vertices'}; %Properties of objects to animate animStruct.Set{qt}={V_DEF(:,:,qt),DN_magnitude,V_DEF(:,:,qt),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/primary/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/.