DEMO_febio_0029_contact_friction_benchmark_boxes

Below is a demonstration for a FEBio demo presented at the FEBio workshop at WCB 2018. Four cubes are stacked on top of each other. Sliding-elastic contact with friction is defined between them. The top cube is forced downwards in a rotation motion thereby compressing the other cubes and also transferring some twist due to frictional forces.

The demo includes * Building geometry for 4 cubes with hexahedral elements * Defining the boundary conditions * Coding the febio structure * Running the model * Importing and visualizing the displacement results

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=fullfile(savePath,[febioFebFileNamePart,'.txt']); %FEBio log file name
febioLogFileName_disp=[febioFebFileNamePart,'_disp_out.txt']; %Log file name for exporting displacement
febioLogFileName_strainEnergy=[febioFebFileNamePart,'_fsed_out.txt']; %Log file name for exporting strain energy density

%Specifying dimensions and number of elements for slab
sampleHeight=2; %Height
sampleWidth=sampleHeight; %Width
sampleThickness=sampleHeight; %Thickness

numElementsWidth=[4 3 5 4]; %Number of elemens in dir 1
numElementsThickness=numElementsWidth; %Number of elemens in dir 2
numElementsHeight=numElementsWidth; %Number of elemens in dir 3

%Material parameter set
youngsModuli   = [0.3 10  0.3 10 ];
poissonsRatios = [0.4 0.1 0.4 0.1];

% 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=25; %Optimum number of iterations
max_retries=10; %Maximum number of retires
dtmin=(1/numTimeSteps)/10; %Minimum time step size
dtmax=1/numTimeSteps; %Maximum time step size

%Contact parameters
contactInitialOffset=0;
boxOffsets=sampleHeight+contactInitialOffset;

%Prescribed displacement
prescribedDisplacement_Z=-2;
prescribedRotation_Z=pi/2;

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.

E=[];
elementMaterialID=[];
V=[];
Fb=[];
Cb=[];
for q=1:1:4

    % Create a box with hexahedral elements
    beamDimensions=[sampleWidth sampleThickness sampleHeight]; %Dimensions
    beamElementNumbers=[numElementsWidth(q) numElementsThickness(q) numElementsHeight(q)]; %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

    V1(:,3)=V1(:,3)+(q-1)*boxOffsets;

    E=[E;E1+size(V,1)];
    Fb=[Fb;Fb1+size(V,1)];
    V=[V;V1];
    colorOffset=max(Cb(:));
    if isempty(colorOffset)
        colorOffset=0;
    end
    Cb=[Cb;Cb1+colorOffset];

    elementMaterialID=[elementMaterialID;q*ones(size(E1,1),1)];

end
V(:,3)=V(:,3)-min(V(:,3)); %Shift so bottom is at 0

Plotting model boundary surfaces and a cut view

hFig=cFigure;
hold on;
title('Model boundary surfaces and labels','FontSize',fontSize);
gpatch(Fb,V,Cb,'k',faceAlpha1);
colormap(gjet(250)); icolorbar;
axisGeom(gca,fontSize);
drawnow;
logicTops=false(size(Cb,1),4);
logicBottoms=false(size(Cb,1),4);
for q=1:1:4
    logicTops(:,q)=Cb==6+(6*(q-1));
    logicBottoms(:,q)=Cb==5+(6*(q-1));
end

Plotting model boundary surfaces

hFig=cFigure;
hold on;
title('Contact faces','FontSize',fontSize);
gpatch(Fb,V,'kw','none',0.2);
for q=1:1:size(logicTops,2)-1
    gpatch(Fb(logicTops(:,q),:),V,q*ones(nnz(logicTops(:,q)),1),'g',1);
    gpatch(Fb(logicBottoms(:,q+1),:),V,q*ones(nnz(logicBottoms(:,q+1)),1),'y',1);
end

colormap(gjet(250)); icolorbar;
axisGeom(gca,fontSize);
drawnow;

Define boundary conditions

F_support=Fb(logicBottoms(:,1),:);

F_rigidBody=Fb(logicTops(:,end),:);
indNodesRigidBody=unique(F_rigidBody(:));
center_of_mass=mean(V(indNodesRigidBody,:),1);

%Supported nodes
bcSupportList=unique(F_support(:));

%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(Fb,V,'kw','none',faceAlpha2);
hl(1)=gpatch(F_rigidBody,V,'rw','k',1);
hl(2)=plotV(V(bcSupportList,:),'k.','MarkerSize',markerSize);
hl(3)=plotV(center_of_mass,'r.','MarkerSize',50);

legend(hl,{'Rigid body','BC support','Rigid body center of mass'});

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
for q=1:1:numel(youngsModuli)
    materialNameNow=['Material',num2str(q)];
    febio_spec.Material.material{q}.ATTR.name=materialNameNow;
    febio_spec.Material.material{q}.ATTR.type='neo-Hookean';
    febio_spec.Material.material{q}.ATTR.id=q;
    febio_spec.Material.material{q}.E=youngsModuli(q);
    febio_spec.Material.material{q}.v=poissonsRatios(q);
end

materialNameRigid='RigidMaterial';
matIdRigid=numel(youngsModuli)+1;
febio_spec.Material.material{matIdRigid}.ATTR.name=materialNameRigid;
febio_spec.Material.material{matIdRigid}.ATTR.type='rigid body';
febio_spec.Material.material{matIdRigid}.ATTR.id=numel(youngsModuli)+1;
febio_spec.Material.material{matIdRigid}.density=1;
febio_spec.Material.material{matIdRigid}.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
n=1;
for q=1:1:numel(youngsModuli)
    logicMaterialNow=(elementMaterialID==q);
    partNameNow=['Part',num2str(q)];
    febio_spec.Mesh.Elements{q}.ATTR.name=partNameNow; %Name of this part
    febio_spec.Mesh.Elements{q}.ATTR.type='hex8'; %Element type of this set
    febio_spec.Mesh.Elements{q}.elem.ATTR.id=(n:1:(n-1+nnz(logicMaterialNow)))'; %Element id's
    febio_spec.Mesh.Elements{q}.elem.VAL=E(logicMaterialNow,:);
    n=n+nnz(logicMaterialNow);
end

partNameRigid='RigidPart';
n=max(febio_spec.Mesh.Elements{end}.elem.ATTR.id);
febio_spec.Mesh.Elements{numel(youngsModuli)+1}.ATTR.name=partNameRigid; %Name of this part
febio_spec.Mesh.Elements{numel(youngsModuli)+1}.ATTR.type='quad4'; %Element type of this set
febio_spec.Mesh.Elements{numel(youngsModuli)+1}.ATTR.mat=numel(youngsModuli)+1; %material index for this set
febio_spec.Mesh.Elements{numel(youngsModuli)+1}.elem.ATTR.id=(n:1:(n-1+size(F_rigidBody,1)))'; %Element id's
febio_spec.Mesh.Elements{numel(youngsModuli)+1}.elem.VAL=F_rigidBody;

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

%MeshDomains section
for q=1:1:numel(youngsModuli)
    partNameNow=['Part',num2str(q)];
    materialNameNow=['Material',num2str(q)];
    febio_spec.MeshDomains.SolidDomain{q}.ATTR.name=partNameNow;
    febio_spec.MeshDomains.SolidDomain{q}.ATTR.mat=materialNameNow;
end

febio_spec.MeshDomains.ShellDomain.ATTR.name=partNameRigid;
febio_spec.MeshDomains.ShellDomain.ATTR.mat=materialNameRigid;

% -> Surfaces
febio_spec.Mesh.Surface=[];
for q=1:1:numel(youngsModuli)-1
    F_contact_now=Fb(logicTops(:,q),:);
    c=numel(febio_spec.Mesh.Surface)+1;
    febio_spec.Mesh.Surface{c}.ATTR.name=['contact_',num2str(c)];
    febio_spec.Mesh.Surface{c}.quad4.ATTR.id=(1:1:size(F_contact_now,1))';
    febio_spec.Mesh.Surface{c}.quad4.VAL=F_contact_now;

    F_contact_now=Fb(logicBottoms(:,q+1),:);
    c=numel(febio_spec.Mesh.Surface)+1;
    febio_spec.Mesh.Surface{c}.ATTR.name=['contact_',num2str(c)];
    febio_spec.Mesh.Surface{c}.quad4.ATTR.id=(1:1:size(F_contact_now,1))';
    febio_spec.Mesh.Surface{c}.quad4.VAL=F_contact_now;
end

% -> Surface pairs
surfaceIndices=reshape(1:(2*(numel(youngsModuli)-1)),2,3)'; %Indices for surface pairs
for q=1:1:numel(youngsModuli)-1
    febio_spec.Mesh.SurfacePair{q}.ATTR.name=['Contact_',num2str(q)];

    numElements1=size(febio_spec.Mesh.Surface{surfaceIndices(q,1)}.quad4.VAL,1);
    numElements2=size(febio_spec.Mesh.Surface{surfaceIndices(q,2)}.quad4.VAL,1);
    if numElements1>numElements2
        febio_spec.Mesh.SurfacePair{q}.primary = febio_spec.Mesh.Surface{surfaceIndices(q,1)}.ATTR.name;
        febio_spec.Mesh.SurfacePair{q}.secondary = febio_spec.Mesh.Surface{surfaceIndices(q,2)}.ATTR.name;
    else
        febio_spec.Mesh.SurfacePair{q}.primary = febio_spec.Mesh.Surface{surfaceIndices(q,2)}.ATTR.name;
        febio_spec.Mesh.SurfacePair{q}.secondary = febio_spec.Mesh.Surface{surfaceIndices(q,1)}.ATTR.name;
    end
end

%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.Rigid.rigid_constraint{1}.ATTR.name='RigidFix_1';
febio_spec.Rigid.rigid_constraint{1}.ATTR.type='fix';
febio_spec.Rigid.rigid_constraint{1}.rb=matIdRigid;
febio_spec.Rigid.rigid_constraint{1}.dofs='Rx,Ry,Ru,Rv';

febio_spec.Rigid.rigid_constraint{2}.ATTR.name='RigidPrescribe';
febio_spec.Rigid.rigid_constraint{2}.ATTR.type='prescribe';
febio_spec.Rigid.rigid_constraint{2}.rb=matIdRigid;
febio_spec.Rigid.rigid_constraint{2}.dof='Rz';
febio_spec.Rigid.rigid_constraint{2}.value.ATTR.lc=1;
febio_spec.Rigid.rigid_constraint{2}.value.VAL=prescribedDisplacement_Z;
febio_spec.Rigid.rigid_constraint{2}.relative=0;

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=matIdRigid;
febio_spec.Rigid.rigid_constraint{3}.dof='Rw';
febio_spec.Rigid.rigid_constraint{3}.value.ATTR.lc=1;
febio_spec.Rigid.rigid_constraint{3}.value.VAL=prescribedRotation_Z;
febio_spec.Rigid.rigid_constraint{3}.relative=0;

%Contact section
for q=1:1:numel(youngsModuli)-1
    febio_spec.Contact.contact{q}.ATTR.surface_pair=febio_spec.Mesh.SurfacePair{q}.ATTR.name;
    febio_spec.Contact.contact{q}.ATTR.type='sliding-elastic';
    febio_spec.Contact.contact{q}.two_pass=1;
    febio_spec.Contact.contact{q}.laugon=1;
    febio_spec.Contact.contact{q}.tolerance=0.2;
    febio_spec.Contact.contact{q}.gaptol=0;
    febio_spec.Contact.contact{q}.minaug=1;
    febio_spec.Contact.contact{q}.maxaug=10;
    febio_spec.Contact.contact{q}.search_tol=0.01;
    febio_spec.Contact.contact{q}.search_radius=1;
    febio_spec.Contact.contact{q}.symmetric_stiffness=0;
    switch q
        case 1
            febio_spec.Contact.contact{q}.auto_penalty=1;
            febio_spec.Contact.contact{q}.penalty=5;
            febio_spec.Contact.contact{q}.fric_coeff=1;
        case 2
            febio_spec.Contact.contact{q}.auto_penalty=1;
            febio_spec.Contact.contact{q}.penalty=0.1;
            febio_spec.Contact.contact{q}.fric_coeff=0.08;
        case 3
            febio_spec.Contact.contact{q}.auto_penalty=1;
            febio_spec.Contact.contact{q}.penalty=0.1;
            febio_spec.Contact.contact{q}.fric_coeff=0.08;
    end
end

%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=',';

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

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='internal';%'internal';

[runFlag]=runMonitorFEBio(febioAnalysis);%START FEBio NOW!!!!!!!!
 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-------->    RUNNING/MONITORING FEBIO JOB    <-------- 11-Dec-2020 12:26:34
FEBio path: /home/kevin/FEBioStudio/bin/febio3
# Attempt removal of existing log files                11-Dec-2020 12:26:34
 * Removal succesful                                   11-Dec-2020 12:26:34
# Attempt removal of existing .xplt files              11-Dec-2020 12:26:34
 * Removal succesful                                   11-Dec-2020 12:26:34
# Starting FEBio...                                    11-Dec-2020 12:26:34
  Max. total analysis time is: Inf s

===========================================================================
         ________    _________   _______       __     _________            
        |        |\ |        |\ |       \\    |  |\  /         \\          
        |    ____|| |    ____|| |    __  ||   |__|| |    ___    ||         
        |   |\___\| |   |\___\| |   |\_| ||    \_\| |   //  \   ||         
        |   ||__    |   ||__    |   ||_| ||   |  |\ |  ||    |  ||         
        |       |\  |       |\  |         \\  |  || |  ||    |  ||         
        |    ___||  |    ___||  |    ___   || |  || |  ||    |  ||         
        |   |\__\|  |   |\__\|  |   |\__|  || |  || |  ||    |  ||         
        |   ||      |   ||___   |   ||__|  || |  || |   \\__/   ||         
        |   ||      |        |\ |          || |  || |           ||         
        |___||      |________|| |_________//  |__||  \_________//          
                                                                           
      F I N I T E   E L E M E N T S   F O R   B I O M E C H A N I C S      
                                                                           
  version 3.1.0
  FEBio is a registered trademark.                                         
  copyright (c) 2006-2020 - All rights reserved                            
                                                                           
===========================================================================

Default linear solver: pardiso
Reading file /mnt/data/MATLAB/GIBBON/data/temp/tempModel.feb ...SUCCESS!

Setting parameter "value" to : -0
Setting parameter "value" to : 0

 ]0;(0%) tempModel.feb - FEBio 3.1.0  
===== beginning time step 1 : 0.1 =====

Setting parameter "value" to : -0.2
Setting parameter "value" to : 0.15708

Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90466
 1
 Nonlinear solution status: time= 0.1
	stiffness updates             = 0
	right hand side evaluations   = 2
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.367791e+01    2.742538e-01    0.000000e+00 
	   energy              3.866442e+00    1.491386e-01    3.866442e-02 
	   displacement        9.747215e+00    9.747215e+00    9.747215e-06 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90106
 2
 Nonlinear solution status: time= 0.1
	stiffness updates             = 0
	right hand side evaluations   = 3
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.367791e+01    1.731359e-04    0.000000e+00 
	   energy              3.866442e+00    1.025304e-03    3.866442e-02 
	   displacement        9.747215e+00    1.312816e+00    1.248514e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90088
 3
 Nonlinear solution status: time= 0.1
	stiffness updates             = 0
	right hand side evaluations   = 4
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.367791e+01    4.000738e-05    0.000000e+00 
	   energy              3.866442e+00    1.454849e-04    3.866442e-02 
	   displacement        9.747215e+00    7.266750e-01    1.359780e-05 
Reforming stiffness matrix: reformation #4

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90304
 4
 Nonlinear solution status: time= 0.1
	stiffness updates             = 0
	right hand side evaluations   = 5
	stiffness matrix reformations = 4
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.367791e+01    2.192016e-06    0.000000e+00 
	   energy              3.866442e+00    4.592935e-06    3.866442e-02 
	   displacement        9.747215e+00    1.904006e-02    1.368127e-05 
Reforming stiffness matrix: reformation #5

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90304
 5
 Nonlinear solution status: time= 0.1
	stiffness updates             = 0
	right hand side evaluations   = 6
	stiffness matrix reformations = 5
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.367791e+01    8.096507e-06    0.000000e+00 
	   energy              3.866442e+00    2.366702e-09    3.866442e-02 
	   displacement        9.747215e+00    1.786984e-02    1.403631e-05 
Reforming stiffness matrix: reformation #6

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90412
 6
 Nonlinear solution status: time= 0.1
	stiffness updates             = 0
	right hand side evaluations   = 11
	stiffness matrix reformations = 6
	step from line search         = 0.158893
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.367791e+01    8.857182e-06    0.000000e+00 
	   energy              3.866442e+00    1.208730e-07    3.866442e-02 
	   displacement        9.747215e+00    1.172464e-05    1.404584e-05 

........................ augmentation # 1
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    1.000000e+00   2.000000e-01
    maximum gap  :    4.290079e-04       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    1.000000e+00   2.000000e-01
    maximum gap  :    1.208804e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    1.000000e+00   2.000000e-01
    maximum gap  :    9.164868e-03       ***
Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90412
 7
 Nonlinear solution status: time= 0.1
	stiffness updates             = 0
	right hand side evaluations   = 13
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.367791e+01    1.634935e-05    0.000000e+00 
	   energy              3.866442e+00    1.942293e-06    3.866442e-02 
	   displacement        9.747215e+00    9.544420e-03    1.442444e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90412
 8
 Nonlinear solution status: time= 0.1
	stiffness updates             = 0
	right hand side evaluations   = 15
	stiffness matrix reformations = 2
	step from line search         = 0.605479
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.367791e+01    1.255150e-05    0.000000e+00 
	   energy              3.866442e+00    2.895300e-06    3.866442e-02 
	   displacement        9.747215e+00    9.123548e-06    1.442778e-05 

........................ augmentation # 2
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    1.996037e-01   2.000000e-01
    maximum gap  :    4.330622e-04       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    1.696461e-01   2.000000e-01
    maximum gap  :    2.292249e-03       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    1.699881e-01   2.000000e-01
    maximum gap  :    1.713429e-03       ***

convergence summary
    number of iterations   : 8
    number of reformations : 0

------- converged at time : 0.1


Data Record #1
===========================================================================
Step = 1
Time = 0.1
Data = ux;uy;uz
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt

Data Record #2
===========================================================================
Step = 1
Time = 0.1
Data = sed
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_fsed_out.txt
 ]0;(10%) tempModel.feb - FEBio 3.1.0  
===== beginning time step 2 : 0.2 =====

Setting parameter "value" to : -0.4
Setting parameter "value" to : 0.314159

Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90412
 1
 Nonlinear solution status: time= 0.2
	stiffness updates             = 0
	right hand side evaluations   = 2
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.372951e+01    7.156657e-02    0.000000e+00 
	   energy              3.862375e+00    6.176512e-02    3.862375e-02 
	   displacement        1.549531e+01    1.549531e+01    1.549531e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90412
 2
 Nonlinear solution status: time= 0.2
	stiffness updates             = 0
	right hand side evaluations   = 3
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.372951e+01    2.975248e-05    0.000000e+00 
	   energy              3.862375e+00    1.048163e-04    3.862375e-02 
	   displacement        1.549531e+01    2.569449e-02    1.540713e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90412
 3
 Nonlinear solution status: time= 0.2
	stiffness updates             = 0
	right hand side evaluations   = 4
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.372951e+01    2.866018e-05    0.000000e+00 
	   energy              3.862375e+00    9.258410e-05    3.862375e-02 
	   displacement        1.549531e+01    1.065807e-01    1.432553e-05 
Reforming stiffness matrix: reformation #4

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90268
 4
 Nonlinear solution status: time= 0.2
	stiffness updates             = 0
	right hand side evaluations   = 5
	stiffness matrix reformations = 4
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.372951e+01    9.462045e-06    0.000000e+00 
	   energy              3.862375e+00    3.771857e-05    3.862375e-02 
	   displacement        1.549531e+01    6.023248e-02    1.372384e-05 
Reforming stiffness matrix: reformation #5

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89980
 5
 Nonlinear solution status: time= 0.2
	stiffness updates             = 0
	right hand side evaluations   = 6
	stiffness matrix reformations = 5
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.372951e+01    3.329220e-07    0.000000e+00 
	   energy              3.862375e+00    5.687928e-06    3.862375e-02 
	   displacement        1.549531e+01    1.195648e-02    1.388372e-05 
Reforming stiffness matrix: reformation #6

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89980
 6
 Nonlinear solution status: time= 0.2
	stiffness updates             = 0
	right hand side evaluations   = 7
	stiffness matrix reformations = 6
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.372951e+01    3.892098e-08    0.000000e+00 
	   energy              3.862375e+00    8.534213e-07    3.862375e-02 
	   displacement        1.549531e+01    1.366696e-02    1.421445e-05 
Reforming stiffness matrix: reformation #7

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89980
 7
 Nonlinear solution status: time= 0.2
	stiffness updates             = 0
	right hand side evaluations   = 8
	stiffness matrix reformations = 7
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.372951e+01    4.003406e-08    0.000000e+00 
	   energy              3.862375e+00    6.773031e-08    3.862375e-02 
	   displacement        1.549531e+01    1.499377e-04    1.424547e-05 
Reforming stiffness matrix: reformation #8

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89980
 8
 Nonlinear solution status: time= 0.2
	stiffness updates             = 0
	right hand side evaluations   = 9
	stiffness matrix reformations = 8
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.372951e+01    1.401645e-12    0.000000e+00 
	   energy              3.862375e+00    2.397734e-10    3.862375e-02 
	   displacement        1.549531e+01    9.842471e-06    1.425210e-05 

........................ augmentation # 1
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    7.282593e-01   2.000000e-01
    maximum gap  :    4.867495e-04       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    7.554152e-01   2.000000e-01
    maximum gap  :    1.569522e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    7.531658e-01   2.000000e-01
    maximum gap  :    1.447574e-02       ***
Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89980
 9
 Nonlinear solution status: time= 0.2
	stiffness updates             = 0
	right hand side evaluations   = 11
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.372951e+01    2.793950e-08    0.000000e+00 
	   energy              3.862375e+00    2.369296e-07    3.862375e-02 
	   displacement        1.549531e+01    1.207475e-02    1.460819e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89980
 10
 Nonlinear solution status: time= 0.2
	stiffness updates             = 0
	right hand side evaluations   = 12
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.372951e+01    2.547937e-12    0.000000e+00 
	   energy              3.862375e+00    3.816063e-10    3.862375e-02 
	   displacement        1.549531e+01    1.101621e-05    1.461308e-05 

........................ augmentation # 2
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    1.079328e-01   2.000000e-01
    maximum gap  :    2.355126e-04       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    1.123740e-01   2.000000e-01
    maximum gap  :    4.499105e-03       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    1.131039e-01   2.000000e-01
    maximum gap  :    4.638548e-03       ***

convergence summary
    number of iterations   : 10
    number of reformations : 0

------- converged at time : 0.2


Data Record #1
===========================================================================
Step = 2
Time = 0.2
Data = ux;uy;uz
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt

Data Record #2
===========================================================================
Step = 2
Time = 0.2
Data = sed
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_fsed_out.txt
 ]0;(20%) tempModel.feb - FEBio 3.1.0  
===== beginning time step 3 : 0.3 =====

Setting parameter "value" to : -0.6
Setting parameter "value" to : 0.471239

Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89980
 1
 Nonlinear solution status: time= 0.3
	stiffness updates             = 0
	right hand side evaluations   = 2
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.378663e+01    7.107802e-02    0.000000e+00 
	   energy              3.868458e+00    6.153358e-02    3.868458e-02 
	   displacement        1.552539e+01    1.552539e+01    1.552539e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89980
 2
 Nonlinear solution status: time= 0.3
	stiffness updates             = 0
	right hand side evaluations   = 3
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.378663e+01    2.589244e-05    0.000000e+00 
	   energy              3.868458e+00    1.191196e-04    3.868458e-02 
	   displacement        1.552539e+01    2.591825e-02    1.542160e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89980
 3
 Nonlinear solution status: time= 0.3
	stiffness updates             = 0
	right hand side evaluations   = 4
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.378663e+01    2.315097e-05    0.000000e+00 
	   energy              3.868458e+00    8.850630e-05    3.868458e-02 
	   displacement        1.552539e+01    8.922397e-02    1.442068e-05 
Reforming stiffness matrix: reformation #4

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89980
 4
 Nonlinear solution status: time= 0.3
	stiffness updates             = 0
	right hand side evaluations   = 5
	stiffness matrix reformations = 4
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.378663e+01    5.686674e-06    0.000000e+00 
	   energy              3.868458e+00    3.700542e-05    3.868458e-02 
	   displacement        1.552539e+01    4.405405e-02    1.388406e-05 
Reforming stiffness matrix: reformation #5

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 5
 Nonlinear solution status: time= 0.3
	stiffness updates             = 0
	right hand side evaluations   = 6
	stiffness matrix reformations = 5
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.378663e+01    3.245682e-07    0.000000e+00 
	   energy              3.868458e+00    7.355476e-06    3.868458e-02 
	   displacement        1.552539e+01    1.040681e-02    1.403341e-05 
Reforming stiffness matrix: reformation #6

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 6
 Nonlinear solution status: time= 0.3
	stiffness updates             = 0
	right hand side evaluations   = 7
	stiffness matrix reformations = 6
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.378663e+01    3.081548e-08    0.000000e+00 
	   energy              3.868458e+00    9.718461e-07    3.868458e-02 
	   displacement        1.552539e+01    1.152753e-02    1.435299e-05 
Reforming stiffness matrix: reformation #7

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 7
 Nonlinear solution status: time= 0.3
	stiffness updates             = 0
	right hand side evaluations   = 8
	stiffness matrix reformations = 7
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.378663e+01    2.831920e-10    0.000000e+00 
	   energy              3.868458e+00    3.986338e-08    3.868458e-02 
	   displacement        1.552539e+01    2.088577e-04    1.438672e-05 
Reforming stiffness matrix: reformation #8

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 8
 Nonlinear solution status: time= 0.3
	stiffness updates             = 0
	right hand side evaluations   = 9
	stiffness matrix reformations = 8
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.378663e+01    5.129154e-12    0.000000e+00 
	   energy              3.868458e+00    4.089284e-10    3.868458e-02 
	   displacement        1.552539e+01    5.024186e-06    1.439329e-05 

........................ augmentation # 1
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    5.561774e-01   2.000000e-01
    maximum gap  :    5.199298e-04       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    5.643824e-01   2.000000e-01
    maximum gap  :    2.325903e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    5.745539e-01   2.000000e-01
    maximum gap  :    1.576988e-02       ***
Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 9
 Nonlinear solution status: time= 0.3
	stiffness updates             = 0
	right hand side evaluations   = 11
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.378663e+01    3.402266e-08    0.000000e+00 
	   energy              3.868458e+00    8.601143e-07    3.868458e-02 
	   displacement        1.552539e+01    1.492302e-02    1.474261e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 10
 Nonlinear solution status: time= 0.3
	stiffness updates             = 0
	right hand side evaluations   = 12
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.378663e+01    4.417036e-11    0.000000e+00 
	   energy              3.868458e+00    9.211630e-09    3.868458e-02 
	   displacement        1.552539e+01    7.965073e-05    1.477160e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 11
 Nonlinear solution status: time= 0.3
	stiffness updates             = 0
	right hand side evaluations   = 13
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.378663e+01    1.590331e-12    0.000000e+00 
	   energy              3.868458e+00    1.156209e-10    3.868458e-02 
	   displacement        1.552539e+01    2.054930e-06    1.476692e-05 

........................ augmentation # 2
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    8.365813e-02   2.000000e-01
    maximum gap  :    3.750633e-04       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    9.375903e-02   2.000000e-01
    maximum gap  :    8.946896e-03       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    1.083743e-01   2.000000e-01
    maximum gap  :    5.276390e-03       ***

convergence summary
    number of iterations   : 11
    number of reformations : 0

------- converged at time : 0.3


Data Record #1
===========================================================================
Step = 3
Time = 0.3
Data = ux;uy;uz
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt

Data Record #2
===========================================================================
Step = 3
Time = 0.3
Data = sed
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_fsed_out.txt
 ]0;(30%) tempModel.feb - FEBio 3.1.0  
===== beginning time step 4 : 0.4 =====

Setting parameter "value" to : -0.8
Setting parameter "value" to : 0.628319

Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 1
 Nonlinear solution status: time= 0.4
	stiffness updates             = 0
	right hand side evaluations   = 2
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.384927e+01    7.069645e-02    0.000000e+00 
	   energy              3.875090e+00    6.138265e-02    3.875090e-02 
	   displacement        1.556692e+01    1.556692e+01    1.556692e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 2
 Nonlinear solution status: time= 0.4
	stiffness updates             = 0
	right hand side evaluations   = 3
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.384927e+01    2.456281e-05    0.000000e+00 
	   energy              3.875090e+00    1.232540e-04    3.875090e-02 
	   displacement        1.556692e+01    2.684525e-02    1.547466e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 3
 Nonlinear solution status: time= 0.4
	stiffness updates             = 0
	right hand side evaluations   = 4
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.384927e+01    1.857570e-05    0.000000e+00 
	   energy              3.875090e+00    8.025522e-05    3.875090e-02 
	   displacement        1.556692e+01    7.366296e-02    1.455556e-05 
Reforming stiffness matrix: reformation #4

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 4
 Nonlinear solution status: time= 0.4
	stiffness updates             = 0
	right hand side evaluations   = 5
	stiffness matrix reformations = 4
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.384927e+01    4.028553e-06    0.000000e+00 
	   energy              3.875090e+00    3.711561e-05    3.875090e-02 
	   displacement        1.556692e+01    3.352283e-02    1.409818e-05 
Reforming stiffness matrix: reformation #5

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 5
 Nonlinear solution status: time= 0.4
	stiffness updates             = 0
	right hand side evaluations   = 6
	stiffness matrix reformations = 5
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.384927e+01    5.645409e-07    0.000000e+00 
	   energy              3.875090e+00    5.969130e-06    3.875090e-02 
	   displacement        1.556692e+01    1.017962e-02    1.425149e-05 
Reforming stiffness matrix: reformation #6

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 6
 Nonlinear solution status: time= 0.4
	stiffness updates             = 0
	right hand side evaluations   = 7
	stiffness matrix reformations = 6
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.384927e+01    7.150110e-08    0.000000e+00 
	   energy              3.875090e+00    1.313751e-06    3.875090e-02 
	   displacement        1.556692e+01    1.231722e-02    1.460196e-05 
Reforming stiffness matrix: reformation #7

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 7
 Nonlinear solution status: time= 0.4
	stiffness updates             = 0
	right hand side evaluations   = 8
	stiffness matrix reformations = 7
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.384927e+01    6.277791e-10    0.000000e+00 
	   energy              3.875090e+00    6.589410e-08    3.875090e-02 
	   displacement        1.556692e+01    1.952805e-04    1.462605e-05 
Reforming stiffness matrix: reformation #8

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 8
 Nonlinear solution status: time= 0.4
	stiffness updates             = 0
	right hand side evaluations   = 9
	stiffness matrix reformations = 8
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.384927e+01    1.958038e-11    0.000000e+00 
	   energy              3.875090e+00    9.138602e-10    3.875090e-02 
	   displacement        1.556692e+01    8.591654e-06    1.463519e-05 

........................ augmentation # 1
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    4.462358e-01   2.000000e-01
    maximum gap  :    6.081182e-04       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    4.592069e-01   2.000000e-01
    maximum gap  :    3.253026e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    4.639135e-01   2.000000e-01
    maximum gap  :    1.819428e-02       ***
Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 9
 Nonlinear solution status: time= 0.4
	stiffness updates             = 0
	right hand side evaluations   = 11
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.384927e+01    5.430653e-08    0.000000e+00 
	   energy              3.875090e+00    1.416890e-06    3.875090e-02 
	   displacement        1.556692e+01    1.809236e-02    1.496665e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 10
 Nonlinear solution status: time= 0.4
	stiffness updates             = 0
	right hand side evaluations   = 12
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.384927e+01    3.219688e-10    0.000000e+00 
	   energy              3.875090e+00    3.212740e-08    3.875090e-02 
	   displacement        1.556692e+01    2.182961e-04    1.501872e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 11
 Nonlinear solution status: time= 0.4
	stiffness updates             = 0
	right hand side evaluations   = 13
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.384927e+01    1.011039e-11    0.000000e+00 
	   energy              3.875090e+00    6.255728e-10    3.875090e-02 
	   displacement        1.556692e+01    6.210837e-06    1.501002e-05 

........................ augmentation # 2
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    7.482333e-02   2.000000e-01
    maximum gap  :    5.342523e-04       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    8.878561e-02   2.000000e-01
    maximum gap  :    2.577026e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    1.118375e-01   2.000000e-01
    maximum gap  :    8.216311e-03       ***

convergence summary
    number of iterations   : 11
    number of reformations : 0

------- converged at time : 0.4


Data Record #1
===========================================================================
Step = 4
Time = 0.4
Data = ux;uy;uz
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt

Data Record #2
===========================================================================
Step = 4
Time = 0.4
Data = sed
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_fsed_out.txt
 ]0;(40%) tempModel.feb - FEBio 3.1.0  
===== beginning time step 5 : 0.5 =====

Setting parameter "value" to : -1
Setting parameter "value" to : 0.785398

Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 1
 Nonlinear solution status: time= 0.5
	stiffness updates             = 0
	right hand side evaluations   = 2
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.391759e+01    6.995745e-02    0.000000e+00 
	   energy              3.882674e+00    6.138507e-02    3.882674e-02 
	   displacement        1.571377e+01    1.571377e+01    1.571377e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 2
 Nonlinear solution status: time= 0.5
	stiffness updates             = 0
	right hand side evaluations   = 3
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.391759e+01    2.327027e-05    0.000000e+00 
	   energy              3.882674e+00    1.290455e-04    3.882674e-02 
	   displacement        1.571377e+01    2.925554e-02    1.558333e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 3
 Nonlinear solution status: time= 0.5
	stiffness updates             = 0
	right hand side evaluations   = 4
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.391759e+01    1.466761e-05    0.000000e+00 
	   energy              3.882674e+00    5.236355e-05    3.882674e-02 
	   displacement        1.571377e+01    5.502889e-02    1.474423e-05 
Reforming stiffness matrix: reformation #4

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 4
 Nonlinear solution status: time= 0.5
	stiffness updates             = 0
	right hand side evaluations   = 5
	stiffness matrix reformations = 4
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.391759e+01    4.096531e-06    0.000000e+00 
	   energy              3.882674e+00    3.061291e-05    3.882674e-02 
	   displacement        1.571377e+01    2.359167e-02    1.445554e-05 
Reforming stiffness matrix: reformation #5

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 5
 Nonlinear solution status: time= 0.5
	stiffness updates             = 0
	right hand side evaluations   = 6
	stiffness matrix reformations = 5
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.391759e+01    3.240018e-07    0.000000e+00 
	   energy              3.882674e+00    6.512825e-06    3.882674e-02 
	   displacement        1.571377e+01    1.249264e-02    1.472362e-05 
Reforming stiffness matrix: reformation #6

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 6
 Nonlinear solution status: time= 0.5
	stiffness updates             = 0
	right hand side evaluations   = 7
	stiffness matrix reformations = 6
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.391759e+01    5.933850e-08    0.000000e+00 
	   energy              3.882674e+00    3.561565e-07    3.882674e-02 
	   displacement        1.571377e+01    2.519803e-03    1.487175e-05 
Reforming stiffness matrix: reformation #7

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 7
 Nonlinear solution status: time= 0.5
	stiffness updates             = 0
	right hand side evaluations   = 8
	stiffness matrix reformations = 7
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.391759e+01    2.050363e-10    0.000000e+00 
	   energy              3.882674e+00    1.411874e-08    3.882674e-02 
	   displacement        1.571377e+01    5.424878e-05    1.488453e-05 
Reforming stiffness matrix: reformation #8

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 8
 Nonlinear solution status: time= 0.5
	stiffness updates             = 0
	right hand side evaluations   = 9
	stiffness matrix reformations = 8
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.391759e+01    1.496135e-12    0.000000e+00 
	   energy              3.882674e+00    1.162764e-10    3.882674e-02 
	   displacement        1.571377e+01    3.578648e-07    1.488595e-05 

........................ augmentation # 1
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    3.821080e-01   2.000000e-01
    maximum gap  :    7.836087e-04       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    3.850573e-01   2.000000e-01
    maximum gap  :    5.322758e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    3.966787e-01   2.000000e-01
    maximum gap  :    2.103667e-02       ***
Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 9
 Nonlinear solution status: time= 0.5
	stiffness updates             = 0
	right hand side evaluations   = 11
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.391759e+01    7.158157e-08    0.000000e+00 
	   energy              3.882674e+00    2.407945e-06    3.882674e-02 
	   displacement        1.571377e+01    1.940955e-02    1.529308e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 10
 Nonlinear solution status: time= 0.5
	stiffness updates             = 0
	right hand side evaluations   = 12
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.391759e+01    6.627326e-10    0.000000e+00 
	   energy              3.882674e+00    2.377504e-08    3.882674e-02 
	   displacement        1.571377e+01    9.327122e-05    1.532816e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 11
 Nonlinear solution status: time= 0.5
	stiffness updates             = 0
	right hand side evaluations   = 13
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.391759e+01    1.295464e-11    0.000000e+00 
	   energy              3.882674e+00    4.444620e-10    3.882674e-02 
	   displacement        1.571377e+01    2.822945e-06    1.532180e-05 

........................ augmentation # 2
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    7.013166e-02   2.000000e-01
    maximum gap  :    7.193985e-04       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    8.290695e-02   2.000000e-01
    maximum gap  :    4.163317e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    1.132829e-01   2.000000e-01
    maximum gap  :    8.924762e-03       ***

convergence summary
    number of iterations   : 11
    number of reformations : 0

------- converged at time : 0.5


Data Record #1
===========================================================================
Step = 5
Time = 0.5
Data = ux;uy;uz
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt

Data Record #2
===========================================================================
Step = 5
Time = 0.5
Data = sed
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_fsed_out.txt
 ]0;(50%) tempModel.feb - FEBio 3.1.0  
===== beginning time step 6 : 0.6 =====

Setting parameter "value" to : -1.2
Setting parameter "value" to : 0.942478

Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 90124
 1
 Nonlinear solution status: time= 0.6
	stiffness updates             = 0
	right hand side evaluations   = 2
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.399396e+01    7.028723e-02    0.000000e+00 
	   energy              3.890319e+00    6.148753e-02    3.890319e-02 
	   displacement        1.565674e+01    1.565674e+01    1.565674e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89980
 2
 Nonlinear solution status: time= 0.6
	stiffness updates             = 0
	right hand side evaluations   = 3
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.399396e+01    6.655119e-05    0.000000e+00 
	   energy              3.890319e+00    1.425114e-04    3.890319e-02 
	   displacement        1.565674e+01    3.006385e-02    1.555841e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89872
 3
 Nonlinear solution status: time= 0.6
	stiffness updates             = 0
	right hand side evaluations   = 4
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.399396e+01    9.524786e-06    0.000000e+00 
	   energy              3.890319e+00    5.345568e-05    3.890319e-02 
	   displacement        1.565674e+01    2.285860e-02    1.505707e-05 
Reforming stiffness matrix: reformation #4

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 4
 Nonlinear solution status: time= 0.6
	stiffness updates             = 0
	right hand side evaluations   = 5
	stiffness matrix reformations = 4
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.399396e+01    4.930562e-06    0.000000e+00 
	   energy              3.890319e+00    2.610028e-05    3.890319e-02 
	   displacement        1.565674e+01    3.347161e-02    1.444514e-05 
Reforming stiffness matrix: reformation #5

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 5
 Nonlinear solution status: time= 0.6
	stiffness updates             = 0
	right hand side evaluations   = 6
	stiffness matrix reformations = 5
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.399396e+01    1.519959e-07    0.000000e+00 
	   energy              3.890319e+00    2.495970e-06    3.890319e-02 
	   displacement        1.565674e+01    4.960149e-03    1.425495e-05 
Reforming stiffness matrix: reformation #6

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 6
 Nonlinear solution status: time= 0.6
	stiffness updates             = 0
	right hand side evaluations   = 7
	stiffness matrix reformations = 6
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.399396e+01    7.016713e-09    0.000000e+00 
	   energy              3.890319e+00    1.342833e-07    3.890319e-02 
	   displacement        1.565674e+01    5.015671e-04    1.431338e-05 
Reforming stiffness matrix: reformation #7

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 7
 Nonlinear solution status: time= 0.6
	stiffness updates             = 0
	right hand side evaluations   = 8
	stiffness matrix reformations = 7
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.399396e+01    1.027013e-10    0.000000e+00 
	   energy              3.890319e+00    4.672105e-09    3.890319e-02 
	   displacement        1.565674e+01    9.369236e-06    1.432067e-05 

........................ augmentation # 1
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    3.361795e-01   2.000000e-01
    maximum gap  :    9.798969e-04       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    3.361433e-01   2.000000e-01
    maximum gap  :    4.035880e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    3.387520e-01   2.000000e-01
    maximum gap  :    2.561466e-02       ***
Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 8
 Nonlinear solution status: time= 0.6
	stiffness updates             = 0
	right hand side evaluations   = 10
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.399396e+01    1.279404e-06    0.000000e+00 
	   energy              3.890319e+00    2.276440e-06    3.890319e-02 
	   displacement        1.565674e+01    2.227557e-02    1.483895e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 9
 Nonlinear solution status: time= 0.6
	stiffness updates             = 0
	right hand side evaluations   = 11
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.399396e+01    4.657506e-07    0.000000e+00 
	   energy              3.890319e+00    3.118476e-08    3.890319e-02 
	   displacement        1.565674e+01    1.326234e-05    1.482943e-05 

........................ augmentation # 2
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    6.807582e-02   2.000000e-01
    maximum gap  :    9.313840e-04       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    8.055290e-02   2.000000e-01
    maximum gap  :    2.611089e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    1.121487e-01   2.000000e-01
    maximum gap  :    1.903095e-02       ***

convergence summary
    number of iterations   : 9
    number of reformations : 0

------- converged at time : 0.6


Data Record #1
===========================================================================
Step = 6
Time = 0.6
Data = ux;uy;uz
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt

Data Record #2
===========================================================================
Step = 6
Time = 0.6
Data = sed
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_fsed_out.txt
 ]0;(60%) tempModel.feb - FEBio 3.1.0  
===== beginning time step 7 : 0.7 =====

Setting parameter "value" to : -1.4
Setting parameter "value" to : 1.09956

Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 1
 Nonlinear solution status: time= 0.7
	stiffness updates             = 0
	right hand side evaluations   = 2
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.407865e+01    6.998295e-02    0.000000e+00 
	   energy              3.899528e+00    6.147595e-02    3.899528e-02 
	   displacement        1.542189e+01    1.542189e+01    1.542189e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 2
 Nonlinear solution status: time= 0.7
	stiffness updates             = 0
	right hand side evaluations   = 3
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.407865e+01    1.490659e-04    0.000000e+00 
	   energy              3.899528e+00    1.430501e-04    3.899528e-02 
	   displacement        1.542189e+01    4.871917e-02    1.539287e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 3
 Nonlinear solution status: time= 0.7
	stiffness updates             = 0
	right hand side evaluations   = 4
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.407865e+01    1.043342e-05    0.000000e+00 
	   energy              3.899528e+00    4.631049e-05    3.899528e-02 
	   displacement        1.542189e+01    3.502867e-02    1.491312e-05 
Reforming stiffness matrix: reformation #4

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 4
 Nonlinear solution status: time= 0.7
	stiffness updates             = 0
	right hand side evaluations   = 5
	stiffness matrix reformations = 4
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.407865e+01    8.051588e-06    0.000000e+00 
	   energy              3.899528e+00    9.348680e-06    3.899528e-02 
	   displacement        1.542189e+01    5.581905e-02    1.427178e-05 
Reforming stiffness matrix: reformation #5

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 5
 Nonlinear solution status: time= 0.7
	stiffness updates             = 0
	right hand side evaluations   = 6
	stiffness matrix reformations = 5
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.407865e+01    3.311314e-07    0.000000e+00 
	   energy              3.899528e+00    6.463190e-06    3.899528e-02 
	   displacement        1.542189e+01    1.129308e-02    1.437276e-05 
Reforming stiffness matrix: reformation #6

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 6
 Nonlinear solution status: time= 0.7
	stiffness updates             = 0
	right hand side evaluations   = 7
	stiffness matrix reformations = 6
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.407865e+01    4.720394e-07    0.000000e+00 
	   energy              3.899528e+00    1.529327e-06    3.899528e-02 
	   displacement        1.542189e+01    3.952119e-03    1.457231e-05 
Reforming stiffness matrix: reformation #7

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 7
 Nonlinear solution status: time= 0.7
	stiffness updates             = 0
	right hand side evaluations   = 8
	stiffness matrix reformations = 7
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.407865e+01    1.220555e-09    0.000000e+00 
	   energy              3.899528e+00    3.325177e-08    3.899528e-02 
	   displacement        1.542189e+01    7.962239e-04    1.458493e-05 
Reforming stiffness matrix: reformation #8

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 8
 Nonlinear solution status: time= 0.7
	stiffness updates             = 0
	right hand side evaluations   = 9
	stiffness matrix reformations = 8
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.407865e+01    2.128851e-11    0.000000e+00 
	   energy              3.899528e+00    6.333600e-10    3.899528e-02 
	   displacement        1.542189e+01    4.057340e-06    1.458830e-05 

........................ augmentation # 1
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    3.023910e-01   2.000000e-01
    maximum gap  :    1.210603e-03       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    3.013086e-01   2.000000e-01
    maximum gap  :    6.441884e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    2.989577e-01   2.000000e-01
    maximum gap  :    5.352246e-02       ***
Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 9
 Nonlinear solution status: time= 0.7
	stiffness updates             = 0
	right hand side evaluations   = 11
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.407865e+01    4.726196e-06    0.000000e+00 
	   energy              3.899528e+00    4.376473e-05    3.899528e-02 
	   displacement        1.542189e+01    2.905052e-02    1.503846e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 10
 Nonlinear solution status: time= 0.7
	stiffness updates             = 0
	right hand side evaluations   = 12
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.407865e+01    3.680424e-07    0.000000e+00 
	   energy              3.899528e+00    8.223982e-08    3.899528e-02 
	   displacement        1.542189e+01    3.107956e-03    1.506440e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 11
 Nonlinear solution status: time= 0.7
	stiffness updates             = 0
	right hand side evaluations   = 13
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.407865e+01    5.060742e-09    0.000000e+00 
	   energy              3.899528e+00    7.220753e-08    3.899528e-02 
	   displacement        1.542189e+01    1.491560e-03    1.505452e-05 
Reforming stiffness matrix: reformation #4

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 12
 Nonlinear solution status: time= 0.7
	stiffness updates             = 0
	right hand side evaluations   = 14
	stiffness matrix reformations = 4
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.407865e+01    2.162149e-11    0.000000e+00 
	   energy              3.899528e+00    6.502048e-11    3.899528e-02 
	   displacement        1.542189e+01    1.251531e-05    1.505489e-05 

........................ augmentation # 2
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    7.056416e-02   2.000000e-01
    maximum gap  :    1.174317e-03       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    9.261554e-02   2.000000e-01
    maximum gap  :    5.016864e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    9.934294e-02   2.000000e-01
    maximum gap  :    4.729016e-02       ***

convergence summary
    number of iterations   : 12
    number of reformations : 0

------- converged at time : 0.7


Data Record #1
===========================================================================
Step = 7
Time = 0.7
Data = ux;uy;uz
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt

Data Record #2
===========================================================================
Step = 7
Time = 0.7
Data = sed
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_fsed_out.txt
 ]0;(70%) tempModel.feb - FEBio 3.1.0  
===== beginning time step 8 : 0.8 =====

Setting parameter "value" to : -1.6
Setting parameter "value" to : 1.25664

Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89836
 1
 Nonlinear solution status: time= 0.8
	stiffness updates             = 0
	right hand side evaluations   = 2
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.417245e+01    7.080185e-02    0.000000e+00 
	   energy              3.908583e+00    6.232534e-02    3.908583e-02 
	   displacement        1.580103e+01    1.580103e+01    1.580103e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89692
 2
 Nonlinear solution status: time= 0.8
	stiffness updates             = 0
	right hand side evaluations   = 3
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.417245e+01    3.839968e-05    0.000000e+00 
	   energy              3.908583e+00    1.128102e-04    3.908583e-02 
	   displacement        1.580103e+01    3.717330e-02    1.569019e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89692
 3
 Nonlinear solution status: time= 0.8
	stiffness updates             = 0
	right hand side evaluations   = 4
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.417245e+01    1.052484e-05    0.000000e+00 
	   energy              3.908583e+00    4.477827e-05    3.908583e-02 
	   displacement        1.580103e+01    1.337275e-02    1.541518e-05 
Reforming stiffness matrix: reformation #4

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89728
 4
 Nonlinear solution status: time= 0.8
	stiffness updates             = 0
	right hand side evaluations   = 5
	stiffness matrix reformations = 4
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.417245e+01    2.029971e-05    0.000000e+00 
	   energy              3.908583e+00    1.294955e-05    3.908583e-02 
	   displacement        1.580103e+01    2.328075e-02    1.525038e-05 
Reforming stiffness matrix: reformation #5

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89260
 5
 Nonlinear solution status: time= 0.8
	stiffness updates             = 0
	right hand side evaluations   = 6
	stiffness matrix reformations = 5
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.417245e+01    1.743412e-06    0.000000e+00 
	   energy              3.908583e+00    1.580672e-05    3.908583e-02 
	   displacement        1.580103e+01    1.725950e-02    1.479022e-05 
Reforming stiffness matrix: reformation #6

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89692
 6
 Nonlinear solution status: time= 0.8
	stiffness updates             = 0
	right hand side evaluations   = 7
	stiffness matrix reformations = 6
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.417245e+01    3.820363e-07    0.000000e+00 
	   energy              3.908583e+00    1.380609e-06    3.908583e-02 
	   displacement        1.580103e+01    7.014949e-03    1.507703e-05 
Reforming stiffness matrix: reformation #7

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89584
 7
 Nonlinear solution status: time= 0.8
	stiffness updates             = 0
	right hand side evaluations   = 8
	stiffness matrix reformations = 7
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.417245e+01    1.586720e-07    0.000000e+00 
	   energy              3.908583e+00    6.559508e-07    3.908583e-02 
	   displacement        1.580103e+01    4.609157e-04    1.500158e-05 
Reforming stiffness matrix: reformation #8

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89692
 8
 Nonlinear solution status: time= 0.8
	stiffness updates             = 0
	right hand side evaluations   = 10
	stiffness matrix reformations = 8
	step from line search         = 0.604816
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.417245e+01    2.077659e-08    0.000000e+00 
	   energy              3.908583e+00    1.292842e-07    3.908583e-02 
	   displacement        1.580103e+01    1.981096e-04    1.504800e-05 
Reforming stiffness matrix: reformation #9

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89692
 9
 Nonlinear solution status: time= 0.8
	stiffness updates             = 0
	right hand side evaluations   = 13
	stiffness matrix reformations = 9
	step from line search         = 0.254227
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.417245e+01    1.175074e-08    0.000000e+00 
	   energy              3.908583e+00    1.906418e-08    3.908583e-02 
	   displacement        1.580103e+01    6.095948e-06    1.505576e-05 

........................ augmentation # 1
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    2.876564e-01   2.000000e-01
    maximum gap  :    1.481460e-03       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    2.826639e-01   2.000000e-01
    maximum gap  :    9.335860e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    2.725326e-01   2.000000e-01
    maximum gap  :    3.369791e-02       ***
Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89692
 10
 Nonlinear solution status: time= 0.8
	stiffness updates             = 0
	right hand side evaluations   = 15
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.417245e+01    1.123676e-06    0.000000e+00 
	   energy              3.908583e+00    4.059168e-06    3.908583e-02 
	   displacement        1.580103e+01    4.208957e-02    1.602566e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89692
 11
 Nonlinear solution status: time= 0.8
	stiffness updates             = 0
	right hand side evaluations   = 16
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.417245e+01    1.801265e-08    0.000000e+00 
	   energy              3.908583e+00    9.531922e-08    3.908583e-02 
	   displacement        1.580103e+01    8.944029e-04    1.590471e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89692
 12
 Nonlinear solution status: time= 0.8
	stiffness updates             = 0
	right hand side evaluations   = 17
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.417245e+01    2.284473e-11    0.000000e+00 
	   energy              3.908583e+00    4.854940e-10    3.908583e-02 
	   displacement        1.580103e+01    1.150465e-06    1.590408e-05 

........................ augmentation # 2
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    7.820988e-02   2.000000e-01
    maximum gap  :    1.474937e-03       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    9.005537e-02   2.000000e-01
    maximum gap  :    7.201410e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    7.952876e-02   2.000000e-01
    maximum gap  :    1.587162e-02       ***

convergence summary
    number of iterations   : 12
    number of reformations : 0

------- converged at time : 0.8


Data Record #1
===========================================================================
Step = 8
Time = 0.8
Data = ux;uy;uz
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt

Data Record #2
===========================================================================
Step = 8
Time = 0.8
Data = sed
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_fsed_out.txt
 ]0;(80%) tempModel.feb - FEBio 3.1.0  
===== beginning time step 9 : 0.9 =====

Setting parameter "value" to : -1.8
Setting parameter "value" to : 1.41372

Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89692
 1
 Nonlinear solution status: time= 0.9
	stiffness updates             = 0
	right hand side evaluations   = 2
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.428235e+01    7.252379e-02    0.000000e+00 
	   energy              3.919359e+00    6.383619e-02    3.919359e-02 
	   displacement        1.628454e+01    1.628454e+01    1.628454e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89260
 2
 Nonlinear solution status: time= 0.9
	stiffness updates             = 0
	right hand side evaluations   = 3
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.428235e+01    2.739145e-05    0.000000e+00 
	   energy              3.919359e+00    1.030795e-04    3.919359e-02 
	   displacement        1.628454e+01    3.888674e-02    1.623760e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89260
 3
 Nonlinear solution status: time= 0.9
	stiffness updates             = 0
	right hand side evaluations   = 4
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.428235e+01    1.809615e-05    0.000000e+00 
	   energy              3.919359e+00    4.757046e-05    3.919359e-02 
	   displacement        1.628454e+01    2.409135e-02    1.564049e-05 
Reforming stiffness matrix: reformation #4

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89260
 4
 Nonlinear solution status: time= 0.9
	stiffness updates             = 0
	right hand side evaluations   = 5
	stiffness matrix reformations = 4
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.428235e+01    8.502559e-06    0.000000e+00 
	   energy              3.919359e+00    4.653404e-05    3.919359e-02 
	   displacement        1.628454e+01    4.611310e-02    1.481145e-05 
Reforming stiffness matrix: reformation #5

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89260
 5
 Nonlinear solution status: time= 0.9
	stiffness updates             = 0
	right hand side evaluations   = 6
	stiffness matrix reformations = 5
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.428235e+01    4.659961e-07    0.000000e+00 
	   energy              3.919359e+00    4.430132e-06    3.919359e-02 
	   displacement        1.628454e+01    1.596104e-02    1.431489e-05 
Reforming stiffness matrix: reformation #6

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89260
 6
 Nonlinear solution status: time= 0.9
	stiffness updates             = 0
	right hand side evaluations   = 7
	stiffness matrix reformations = 6
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.428235e+01    3.225593e-08    0.000000e+00 
	   energy              3.919359e+00    1.381822e-07    3.919359e-02 
	   displacement        1.628454e+01    1.352767e-03    1.417095e-05 
Reforming stiffness matrix: reformation #7

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89260
 7
 Nonlinear solution status: time= 0.9
	stiffness updates             = 0
	right hand side evaluations   = 8
	stiffness matrix reformations = 7
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.428235e+01    1.538491e-10    0.000000e+00 
	   energy              3.919359e+00    4.539472e-09    3.919359e-02 
	   displacement        1.628454e+01    1.063482e-05    1.418071e-05 

........................ augmentation # 1
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    2.718136e-01   2.000000e-01
    maximum gap  :    1.843170e-03       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    2.482613e-01   2.000000e-01
    maximum gap  :    7.283337e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    2.329809e-01   2.000000e-01
    maximum gap  :    5.498031e-02       ***
Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89260
 8
 Nonlinear solution status: time= 0.9
	stiffness updates             = 0
	right hand side evaluations   = 10
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.428235e+01    5.088738e-06    0.000000e+00 
	   energy              3.919359e+00    4.398479e-05    3.919359e-02 
	   displacement        1.628454e+01    5.103607e-02    1.522144e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89260
 9
 Nonlinear solution status: time= 0.9
	stiffness updates             = 0
	right hand side evaluations   = 11
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.428235e+01    2.654414e-08    0.000000e+00 
	   energy              3.919359e+00    1.475280e-07    3.919359e-02 
	   displacement        1.628454e+01    1.942582e-03    1.508090e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89260
 10
 Nonlinear solution status: time= 0.9
	stiffness updates             = 0
	right hand side evaluations   = 12
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.428235e+01    5.225418e-11    0.000000e+00 
	   energy              3.919359e+00    2.893966e-09    3.919359e-02 
	   displacement        1.628454e+01    3.551213e-06    1.508521e-05 

........................ augmentation # 2
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    8.210253e-02   2.000000e-01
    maximum gap  :    1.901555e-03       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    8.053644e-02   2.000000e-01
    maximum gap  :    5.217676e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    8.079116e-02   2.000000e-01
    maximum gap  :    3.944696e-02       ***

convergence summary
    number of iterations   : 10
    number of reformations : 0

------- converged at time : 0.9


Data Record #1
===========================================================================
Step = 9
Time = 0.9
Data = ux;uy;uz
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt

Data Record #2
===========================================================================
Step = 9
Time = 0.9
Data = sed
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_fsed_out.txt
 ]0;(90%) tempModel.feb - FEBio 3.1.0  
===== beginning time step 10 : 1 =====

Setting parameter "value" to : -2
Setting parameter "value" to : 1.5708

Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89116
 1
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 2
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    7.467898e-02    0.000000e+00 
	   energy              3.931437e+00    6.549532e-02    3.931437e-02 
	   displacement        1.649178e+01    1.649178e+01    1.649178e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 89260
 2
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 3
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    3.838125e-05    0.000000e+00 
	   energy              3.931437e+00    9.372912e-05    3.931437e-02 
	   displacement        1.649178e+01    4.311811e-02    1.646924e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88936
 3
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 4
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    4.074777e-05    0.000000e+00 
	   energy              3.931437e+00    1.472411e-04    3.931437e-02 
	   displacement        1.649178e+01    3.884405e-02    1.621063e-05 
Reforming stiffness matrix: reformation #4

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88828
 4
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 5
	stiffness matrix reformations = 4
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    2.352940e-06    0.000000e+00 
	   energy              3.931437e+00    1.385013e-05    3.931437e-02 
	   displacement        1.649178e+01    1.832352e-02    1.573856e-05 
Reforming stiffness matrix: reformation #5

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88828
 5
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 6
	stiffness matrix reformations = 5
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    4.662229e-07    0.000000e+00 
	   energy              3.931437e+00    2.970978e-06    3.931437e-02 
	   displacement        1.649178e+01    7.368874e-03    1.538088e-05 
Reforming stiffness matrix: reformation #6

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88828
 6
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 7
	stiffness matrix reformations = 6
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    2.309827e-08    0.000000e+00 
	   energy              3.931437e+00    1.705382e-07    3.931437e-02 
	   displacement        1.649178e+01    5.786941e-04    1.527525e-05 
Reforming stiffness matrix: reformation #7

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88828
 7
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 8
	stiffness matrix reformations = 7
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    8.192243e-11    0.000000e+00 
	   energy              3.931437e+00    5.441264e-10    3.931437e-02 
	   displacement        1.649178e+01    1.907754e-06    1.527529e-05 

........................ augmentation # 1
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    2.666090e-01   2.000000e-01
    maximum gap  :    2.735248e-03       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    2.272713e-01   2.000000e-01
    maximum gap  :    7.328773e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    2.364452e-01   2.000000e-01
    maximum gap  :    4.336855e-02       ***
Reforming stiffness matrix: reformation #1

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88774
 8
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 10
	stiffness matrix reformations = 1
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    3.073190e-05    0.000000e+00 
	   energy              3.931437e+00    1.055708e-04    3.931437e-02 
	   displacement        1.649178e+01    5.658306e-02    1.621688e-05 
Reforming stiffness matrix: reformation #2

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88792
 9
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 11
	stiffness matrix reformations = 2
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    1.417484e-07    0.000000e+00 
	   energy              3.931437e+00    4.003386e-07    3.931437e-02 
	   displacement        1.649178e+01    1.064711e-03    1.621329e-05 
Reforming stiffness matrix: reformation #3

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88900
 10
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 12
	stiffness matrix reformations = 3
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    1.709063e-07    0.000000e+00 
	   energy              3.931437e+00    4.830125e-07    3.931437e-02 
	   displacement        1.649178e+01    4.193450e-04    1.613649e-05 
Reforming stiffness matrix: reformation #4

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88684
 11
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 14
	stiffness matrix reformations = 4
	step from line search         = 0.598341
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    7.902393e-08    0.000000e+00 
	   energy              3.931437e+00    3.951323e-07    3.931437e-02 
	   displacement        1.649178e+01    8.478740e-04    1.625378e-05 
Reforming stiffness matrix: reformation #5

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88900
 12
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 15
	stiffness matrix reformations = 5
	step from line search         = 1.000000
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    1.009791e-07    0.000000e+00 
	   energy              3.931437e+00    3.531368e-07    3.931437e-02 
	   displacement        1.649178e+01    7.569482e-04    1.614561e-05 
Reforming stiffness matrix: reformation #6

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88792
 13
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 17
	stiffness matrix reformations = 6
	step from line search         = 0.607986
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    1.485762e-08    0.000000e+00 
	   energy              3.931437e+00    8.030620e-08    3.931437e-02 
	   displacement        1.649178e+01    2.540006e-04    1.620415e-05 
Reforming stiffness matrix: reformation #7

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88792
 14
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 19
	stiffness matrix reformations = 7
	step from line search         = 0.477369
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    6.084105e-09    0.000000e+00 
	   energy              3.931437e+00    1.745404e-08    3.931437e-02 
	   displacement        1.649178e+01    2.062420e-05    1.622016e-05 
Reforming stiffness matrix: reformation #8

===== reforming stiffness matrix:
	Nr of equations ........................... : 1442
	Nr of nonzeroes in stiffness matrix ....... : 88792
 15
 Nonlinear solution status: time= 1
	stiffness updates             = 0
	right hand side evaluations   = 22
	stiffness matrix reformations = 8
	step from line search         = 0.212237
	convergence norms :     INITIAL         CURRENT         REQUIRED
	   residual            1.440579e+01    4.336110e-09    0.000000e+00 
	   energy              3.931437e+00    4.132055e-09    3.931437e-02 
	   displacement        1.649178e+01    1.114623e-06    1.622383e-05 

........................ augmentation # 2
 sliding interface # 1
                        CURRENT        REQUIRED
    D multiplier :    6.704345e-02   2.000000e-01
    maximum gap  :    2.016816e-03       ***
 sliding interface # 2
                        CURRENT        REQUIRED
    D multiplier :    7.034585e-02   2.000000e-01
    maximum gap  :    9.792157e-02       ***
 sliding interface # 3
                        CURRENT        REQUIRED
    D multiplier :    8.649055e-02   2.000000e-01
    maximum gap  :    6.784820e-02       ***

convergence summary
    number of iterations   : 15
    number of reformations : 0

------- converged at time : 1


Data Record #1
===========================================================================
Step = 10
Time = 1
Data = ux;uy;uz
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt

Data Record #2
===========================================================================
Step = 10
Time = 1
Data = sed
File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_fsed_out.txt
 ]0;(100%) tempModel.feb - FEBio 3.1.0  

 N O N L I N E A R   I T E R A T I O N   I N F O R M A T I O N

	Number of time steps completed .................... : 10

	Total number of equilibrium iterations ............ : 109

	Average number of equilibrium iterations .......... : 10.9

	Total number of right hand evaluations ............ : 142

	Total number of stiffness reformations ............ : 109


 L I N E A R   S O L V E R   S T A T S

	Total calls to linear solver ........ : 109

	Avg iterations per solve ............ : 1

	Time in linear solver: 0:00:00

 ]0;(0%) tempModel.feb - FEBio 3.1.0  
 Elapsed time : 0:00:03


 N O R M A L   T E R M I N A T I O N

 * Log file found.                                     11-Dec-2020 12:26:38
# Parsing log file...                                  11-Dec-2020 12:26:38
    number of iterations   : 8                         11-Dec-2020 12:26:38
    number of reformations : 0                         11-Dec-2020 12:26:38
------- converged at time : 0.1                        11-Dec-2020 12:26:38
    number of iterations   : 10                        11-Dec-2020 12:26:38
    number of reformations : 0                         11-Dec-2020 12:26:38
------- converged at time : 0.2                        11-Dec-2020 12:26:38
    number of iterations   : 11                        11-Dec-2020 12:26:38
    number of reformations : 0                         11-Dec-2020 12:26:38
------- converged at time : 0.3                        11-Dec-2020 12:26:38
    number of iterations   : 11                        11-Dec-2020 12:26:38
    number of reformations : 0                         11-Dec-2020 12:26:38
------- converged at time : 0.4                        11-Dec-2020 12:26:38
    number of iterations   : 11                        11-Dec-2020 12:26:38
    number of reformations : 0                         11-Dec-2020 12:26:38
------- converged at time : 0.5                        11-Dec-2020 12:26:38
    number of iterations   : 9                         11-Dec-2020 12:26:38
    number of reformations : 0                         11-Dec-2020 12:26:38
------- converged at time : 0.6                        11-Dec-2020 12:26:38
    number of iterations   : 12                        11-Dec-2020 12:26:38
    number of reformations : 0                         11-Dec-2020 12:26:38
------- converged at time : 0.7                        11-Dec-2020 12:26:38
    number of iterations   : 12                        11-Dec-2020 12:26:38
    number of reformations : 0                         11-Dec-2020 12:26:38
------- converged at time : 0.8                        11-Dec-2020 12:26:38
    number of iterations   : 10                        11-Dec-2020 12:26:38
    number of reformations : 0                         11-Dec-2020 12:26:38
------- converged at time : 0.9                        11-Dec-2020 12:26:38
    number of iterations   : 15                        11-Dec-2020 12:26:38
    number of reformations : 0                         11-Dec-2020 12:26:38
------- converged at time : 1                          11-Dec-2020 12:26:38
 Elapsed time : 0:00:03                                11-Dec-2020 12:26:38
 N O R M A L   T E R M I N A T I O N
# Done                                                 11-Dec-2020 12:26:38
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

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

    %Access data
    E_energy=dataStruct.data;

Plotting the simulated results using anim8 to visualize and animate deformations

    [CV]=faceToVertexMeasure(E,V,E_energy(:,:,end));

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

    axisGeom(gca,fontSize);
    colormap(gjet(250)); colorbar;
    caxis([min(E_energy(:)) max(E_energy(:))]/2);
    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(E,V,E_energy(:,:,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/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/.