DEMO_febio_0073_deformable_cylinders_contact_01
Below is a demonstration for:
- Building geometry for a slab with hexahedral elements, and a triangulated sphere.
- Defining the boundary conditions
- Coding the febio structure
- Running the model
- Importing and visualizing the displacement results
Contents
Keywords
- febio_spec version 3.0
- febio, FEBio
- indentation
- contact, sliding, sticky, friction
- rigid body constraints
- hexahedral elements, hex8
- triangular elements, tri3
- slab, block, rectangular
- sphere
- static, solid
- hyperelastic, Ogden
- displacement logfile
- stress logfile
clear; close all; clc;
Plot settings
fontSize=15; faceAlpha1=0.8; faceAlpha2=0.3; markerSize=40; markerSize2=20; lineWidth=3;
Control parameters
% Path names defaultFolder = fileparts(fileparts(mfilename('fullpath'))); savePath=fullfile(defaultFolder,'data','temp'); % Defining file names febioFebFileNamePart='tempModel'; febioFebFileName=fullfile(savePath,[febioFebFileNamePart,'.feb']); %FEB file name febioLogFileName=[febioFebFileNamePart,'.txt']; %FEBio log file name febioLogFileName_disp=[febioFebFileNamePart,'_disp_out.txt']; %Log file name for exporting displacement febioLogFileName_force=[febioFebFileNamePart,'_force_out.txt']; %Log file name for exporting force febioLogFileName_stress=[febioFebFileNamePart,'_stress_out.txt']; %Log file name for exporting stress %Geometry parameters cylRadius1=0.5; cylRadius2=1; cylLength=1; pointSpacing1=(cylRadius1*2*pi)/10*[1 1]; pointSpacing2=(cylRadius1*2*pi)/10*[1 1]; appliedForce=-0.0025; %Material parameter set E_youngs1=0.1; %Material Young's modulus nu1=0.35; %Material Poisson's ratio E_youngs2=0.1; %Material Young's modulus nu2=0.35; %Material Poisson's ratio materialDensity=1e-9; % FEA control settings tTotal=1; numTimeSteps=50; %Number of time steps desired max_refs=50; %Max reforms max_ups=0; %Set to zero to use full-Newton iterations opt_iter=15; %Optimum number of iterations max_retries=5; %Maximum number of retires dtmin=(tTotal/numTimeSteps)/100; %Minimum time step size dtmax=(tTotal/numTimeSteps); %Maximum time step size symmetric_stiffness=0; analysisType='STATIC';%'DYNAMIC'; %Contact parameters contactPenalty=10; laugon=0; minaug=1; maxaug=10; fric_coeff=0.01;
Creating model geometry and mesh
[meshOutput1]=hexMeshCylinder(cylRadius1,cylLength,pointSpacing1); E1=meshOutput1.elements; V1=meshOutput1.nodes; F1=meshOutput1.faces; Fb1=meshOutput1.facesBoundary; Cb1=meshOutput1.boundaryMarker; [meshOutput2]=hexMeshCylinder(cylRadius2,cylLength,pointSpacing2); E2=meshOutput2.elements; V2=meshOutput2.nodes; F2=meshOutput2.faces; Fb2=meshOutput2.facesBoundary; Cb2=meshOutput2.boundaryMarker; R=euler2DCM([0.5*pi 0 0]); V1=V1*R; V1(:,3)=V1(:,3)+cylRadius1; V2=V2*R; V2(:,3)=V2(:,3)-cylRadius2;
Join node sets
V=[V1;V2]; %Join nodes E2=E2+size(V1,1); %Shift indices for second set F2=F2+size(V1,1); %Shift indices for second set Fb2=Fb2+size(V1,1); %Shift indices for second set Fb=[Fb1;Fb2]; Cb=[Cb1;Cb2+1+max(Cb1(:))]; Nb1=patchNormal(Fb1,V); Nb2=patchNormal(Fb2,V); F=[F1;F2]; E=[E1;E2]; [F,V,~,indFix]=mergeVertices(F,V); E=indFix(E); E1=indFix(E1); E2=indFix(E2); Fb1=indFix(Fb1); Fb2=indFix(Fb2); Fb=indFix(Fb);
Visualization
cFigure; hold on; gpatch(Fb1,V,Cb1,'k',faceAlpha1); patchNormPlot(Fb1,V); gpatch(Fb2,V,Cb2,'k',faceAlpha1); patchNormPlot(Fb2,V); axisGeom(gca,fontSize); camlight headlight; colormap(gjet(250)); icolorbar; gdrawnow;

Define contact surfaces
nz=[0 0 1]; logicDown1=dot(Nb1,nz(ones(size(Nb1,1),1),:),2)<0; logicUp2=dot(Nb2,nz(ones(size(Nb2,1),1),:),2)>0; F_contact_primary=Fb2(Cb2==0 & logicUp2,:) ; F_contact_secondary=Fb1(Cb1==0 & logicDown1,:); % Plotting surface models cFigure; hold on; title('Contact sets and normal directions','FontSize',fontSize); gpatch(Fb,V,'kw','none',faceAlpha2); hl(1)=gpatch(F_contact_secondary,V,'g','k',1); patchNormPlot(F_contact_secondary,V); hl(2)=gpatch(F_contact_primary,V,'b','k',1); patchNormPlot(F_contact_primary,V); legend(hl,{'Secondary','Primary'}); axisGeom(gca,fontSize); camlight headlight; drawnow;

Define boundary conditions
VFb1=patchCentre(Fb1,V);
VFb2=patchCentre(Fb2,V);
%Supported nodes
logicPrescribe1=VFb1(:,3)>=cylRadius1 & Cb1==0;
logicSupport2=VFb2(:,3)<=-cylRadius2 & Cb2==0;
bcPrescribeList=unique(Fb1(logicPrescribe1,:));
bcSupportList=unique(Fb2(logicSupport2,:));
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,Cb,'none',faceAlpha2); hl2(1)=plotV(V(bcSupportList,:),'k.','MarkerSize',markerSize); hl2(2)=plotV(V(bcPrescribeList,:),'r.','MarkerSize',markerSize); legend(hl2,{'BC support','BC prescribe'}); axisGeom(gca,fontSize); camlight headlight; drawnow;

Defining the FEBio input structure
See also febioStructTemplate and febioStruct2xml and the FEBio user manual.
%Get a template with default settings [febio_spec]=febioStructTemplate; %febio_spec version febio_spec.ATTR.version='3.0'; %Module section febio_spec.Module.ATTR.type='solid'; %Control section febio_spec.Control.analysis=analysisType; febio_spec.Control.time_steps=numTimeSteps; febio_spec.Control.step_size=tTotal/numTimeSteps; febio_spec.Control.solver.max_refs=max_refs; febio_spec.Control.solver.max_ups=max_ups; febio_spec.Control.solver.symmetric_stiffness=symmetric_stiffness; febio_spec.Control.time_stepper.dtmin=dtmin; febio_spec.Control.time_stepper.dtmax=dtmax; febio_spec.Control.time_stepper.max_retries=max_retries; febio_spec.Control.time_stepper.opt_iter=opt_iter; %Material section materialName1='Material1'; febio_spec.Material.material{1}.ATTR.name=materialName1; febio_spec.Material.material{1}.ATTR.type='neo-Hookean'; febio_spec.Material.material{1}.ATTR.id=1; febio_spec.Material.material{1}.E=E_youngs1; febio_spec.Material.material{1}.v=nu1; febio_spec.Material.material{1}.density=materialDensity; materialName2='Material2'; febio_spec.Material.material{2}.ATTR.name=materialName2; febio_spec.Material.material{2}.ATTR.type='neo-Hookean'; febio_spec.Material.material{2}.ATTR.id=2; febio_spec.Material.material{2}.E=E_youngs2; febio_spec.Material.material{2}.v=nu2; febio_spec.Material.material{2}.density=materialDensity; %Mesh section % -> Nodes febio_spec.Mesh.Nodes{1}.ATTR.name='nodeSet_all'; %The node set name febio_spec.Mesh.Nodes{1}.node.ATTR.id=(1:size(V,1))'; %The node id's febio_spec.Mesh.Nodes{1}.node.VAL=V; %The nodel coordinates % -> Elements partName1='Part1'; febio_spec.Mesh.Elements{1}.ATTR.name=partName1; %Name of this part febio_spec.Mesh.Elements{1}.ATTR.type='hex8'; %Element type febio_spec.Mesh.Elements{1}.elem.ATTR.id=(1:1:size(E1,1))'; %Element id's febio_spec.Mesh.Elements{1}.elem.VAL=E1; %The element matrix partName2='Part2'; febio_spec.Mesh.Elements{2}.ATTR.name=partName2; %Name of this part febio_spec.Mesh.Elements{2}.ATTR.type='hex8'; %Element type febio_spec.Mesh.Elements{2}.elem.ATTR.id=size(E1,1)+(1:1:size(E2,1))'; %Element id's febio_spec.Mesh.Elements{2}.elem.VAL=E2; %The element matrix % -> NodeSets nodeSetName1='bcSupportList'; febio_spec.Mesh.NodeSet{1}.ATTR.name=nodeSetName1; febio_spec.Mesh.NodeSet{1}.node.ATTR.id=bcSupportList(:); nodeSetName2='bcPrescribeList'; febio_spec.Mesh.NodeSet{2}.ATTR.name=nodeSetName2; febio_spec.Mesh.NodeSet{2}.node.ATTR.id=bcPrescribeList(:); %MeshDomains section febio_spec.MeshDomains.SolidDomain{1}.ATTR.name=partName1; febio_spec.MeshDomains.SolidDomain{1}.ATTR.mat=materialName1; febio_spec.MeshDomains.SolidDomain{2}.ATTR.name=partName2; febio_spec.MeshDomains.SolidDomain{2}.ATTR.mat=materialName2; % -> Surfaces surfaceName1='contactSurface1'; febio_spec.Mesh.Surface{1}.ATTR.name=surfaceName1; febio_spec.Mesh.Surface{1}.quad4.ATTR.id=(1:1:size(F_contact_secondary,1))'; febio_spec.Mesh.Surface{1}.quad4.VAL=F_contact_secondary; surfaceName2='contactSurface2'; febio_spec.Mesh.Surface{2}.ATTR.name=surfaceName2; febio_spec.Mesh.Surface{2}.quad4.ATTR.id=(1:1:size(F_contact_primary,1))'; febio_spec.Mesh.Surface{2}.quad4.VAL=F_contact_primary; % -> Surface pairs contactPairName='Contact1'; febio_spec.Mesh.SurfacePair{1}.ATTR.name=contactPairName; febio_spec.Mesh.SurfacePair{1}.primary=surfaceName2; febio_spec.Mesh.SurfacePair{1}.secondary=surfaceName1; %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'; febio_spec.Boundary.bc{2}.ATTR.type='fix'; febio_spec.Boundary.bc{2}.ATTR.node_set=nodeSetName2; febio_spec.Boundary.bc{2}.dofs='x,y'; % febio_spec.Boundary.bc{3}.ATTR.type='prescribe'; % febio_spec.Boundary.bc{3}.ATTR.node_set=nodeSetName2; % febio_spec.Boundary.bc{3}.dof='z'; % febio_spec.Boundary.bc{3}.scale.ATTR.lc=1; % febio_spec.Boundary.bc{3}.scale.VAL=-1; % febio_spec.Boundary.bc{3}.relative=0; febio_spec.Loads.nodal_load{1}.ATTR.name='PrescribedForceZ'; febio_spec.Loads.nodal_load{1}.ATTR.type='nodal_load'; febio_spec.Loads.nodal_load{1}.ATTR.node_set=nodeSetName2; febio_spec.Loads.nodal_load{1}.dof='z'; febio_spec.Loads.nodal_load{1}.scale.ATTR.lc=1; febio_spec.Loads.nodal_load{1}.scale.VAL=appliedForce/numel(bcPrescribeList); %Contact section febio_spec.Contact.contact{1}.ATTR.type='sliding-elastic'; febio_spec.Contact.contact{1}.ATTR.surface_pair=contactPairName; febio_spec.Contact.contact{1}.two_pass=1; febio_spec.Contact.contact{1}.laugon=laugon; febio_spec.Contact.contact{1}.tolerance=0.2; febio_spec.Contact.contact{1}.gaptol=0; febio_spec.Contact.contact{1}.minaug=minaug; febio_spec.Contact.contact{1}.maxaug=maxaug; febio_spec.Contact.contact{1}.search_tol=0.01; febio_spec.Contact.contact{1}.search_radius=0.1; febio_spec.Contact.contact{1}.symmetric_stiffness=0; febio_spec.Contact.contact{1}.auto_penalty=1; febio_spec.Contact.contact{1}.penalty=contactPenalty; febio_spec.Contact.contact{1}.fric_coeff=fric_coeff; %LoadData section % -> load_controller febio_spec.LoadData.load_controller{1}.ATTR.id=1; febio_spec.LoadData.load_controller{1}.ATTR.type='loadcurve'; febio_spec.LoadData.load_controller{1}.interpolate='LINEAR'; febio_spec.LoadData.load_controller{1}.points.point.VAL=[0 0; tTotal 1]; %Output section % -> log file febio_spec.Output.logfile.ATTR.file=febioLogFileName; febio_spec.Output.logfile.node_data{1}.ATTR.file=febioLogFileName_disp; febio_spec.Output.logfile.node_data{1}.ATTR.data='ux;uy;uz'; febio_spec.Output.logfile.node_data{1}.ATTR.delim=','; febio_spec.Output.logfile.node_data{2}.ATTR.file=febioLogFileName_force; febio_spec.Output.logfile.node_data{2}.ATTR.data='Rx;Ry;Rz'; febio_spec.Output.logfile.node_data{2}.ATTR.delim=','; febio_spec.Output.logfile.element_data{1}.ATTR.file=febioLogFileName_stress; febio_spec.Output.logfile.element_data{1}.ATTR.data='s3'; febio_spec.Output.logfile.element_data{1}.ATTR.delim=',';
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 <-------- 23-Apr-2021 19:51:07 FEBio path: /home/kevin/FEBioStudio/bin/febio3 # Attempt removal of existing log files 23-Apr-2021 19:51:07 * Removal succesful 23-Apr-2021 19:51:07 # Attempt removal of existing .xplt files 23-Apr-2021 19:51:07 * Removal succesful 23-Apr-2021 19:51:07 # Starting FEBio... 23-Apr-2021 19:51:07 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.2.0 FEBio is a registered trademark. copyright (c) 2006-2020 - All rights reserved =========================================================================== Default linear solver: pardiso Success loading plugin libfebiochem_lnx64.so (version 0.0.0) Success loading plugin libfebioheat_lnx64.so (version 0.0.0) Reading file /mnt/data/MATLAB/GIBBON/data/temp/tempModel.feb ...SUCCESS! Setting parameter "scale" to : 0 ]0;(0%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 1 : 0.02 ===== Setting parameter "scale" to : 0.02 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.02 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.545358e-15 0.000000e+00 energy 1.026308e-07 4.355221e-11 1.026308e-09 displacement 1.044423e-03 1.044423e-03 1.044423e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.02 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.347363e-27 0.000000e+00 energy 1.026308e-07 7.239869e-20 1.026308e-09 displacement 1.044423e-03 2.031822e-10 1.043522e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.02 Data Record #1 =========================================================================== Step = 1 Time = 0.02 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 1 Time = 0.02 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 1 Time = 0.02 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(2%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 2 : 0.04 ===== Setting parameter "scale" to : 0.04 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.04 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.548366e-15 0.000000e+00 energy 1.025441e-07 4.339810e-11 1.025441e-09 displacement 1.042623e-03 1.042623e-03 1.042623e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.04 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.330322e-27 0.000000e+00 energy 1.025441e-07 7.178398e-20 1.025441e-09 displacement 1.042623e-03 2.018173e-10 1.041726e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.04 Data Record #1 =========================================================================== Step = 2 Time = 0.04 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 2 Time = 0.04 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 2 Time = 0.04 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(4%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 3 : 0.06 ===== Setting parameter "scale" to : 0.06 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.06 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.551395e-15 0.000000e+00 energy 1.024576e-07 4.324379e-11 1.024576e-09 displacement 1.040830e-03 1.040830e-03 1.040830e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.06 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.312622e-27 0.000000e+00 energy 1.024576e-07 7.116632e-20 1.024576e-09 displacement 1.040830e-03 2.004556e-10 1.039937e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.06 Data Record #1 =========================================================================== Step = 3 Time = 0.06 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 3 Time = 0.06 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 3 Time = 0.06 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(6%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 4 : 0.08 ===== Setting parameter "scale" to : 0.08 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.08 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.554444e-15 0.000000e+00 energy 1.023715e-07 4.308927e-11 1.023715e-09 displacement 1.039045e-03 1.039045e-03 1.039045e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.08 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.294748e-27 0.000000e+00 energy 1.023715e-07 7.054448e-20 1.023715e-09 displacement 1.039045e-03 1.990974e-10 1.038156e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.08 Data Record #1 =========================================================================== Step = 4 Time = 0.08 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 4 Time = 0.08 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 4 Time = 0.08 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(8%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 5 : 0.1 ===== Setting parameter "scale" to : 0.1 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 1.557515e-15 0.000000e+00 energy 1.022857e-07 4.293457e-11 1.022857e-09 displacement 1.037268e-03 1.037268e-03 1.037268e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 8.275778e-27 0.000000e+00 energy 1.022857e-07 6.992252e-20 1.022857e-09 displacement 1.037268e-03 1.977425e-10 1.036383e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.1 Data Record #1 =========================================================================== Step = 5 Time = 0.1 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 5 Time = 0.1 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 5 Time = 0.1 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(10%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 6 : 0.12 ===== Setting parameter "scale" to : 0.12 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.12 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.560608e-15 0.000000e+00 energy 1.022002e-07 4.277967e-11 1.022002e-09 displacement 1.035499e-03 1.035499e-03 1.035499e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.12 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.256032e-27 0.000000e+00 energy 1.022002e-07 6.929901e-20 1.022002e-09 displacement 1.035499e-03 1.963912e-10 1.034617e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.12 Data Record #1 =========================================================================== Step = 6 Time = 0.12 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 6 Time = 0.12 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 6 Time = 0.12 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(12%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 7 : 0.14 ===== Setting parameter "scale" to : 0.14 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.14 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.563723e-15 0.000000e+00 energy 1.021150e-07 4.262459e-11 1.021150e-09 displacement 1.033737e-03 1.033737e-03 1.033737e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.14 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.236154e-27 0.000000e+00 energy 1.021150e-07 6.867262e-20 1.021150e-09 displacement 1.033737e-03 1.950434e-10 1.032860e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.14 Data Record #1 =========================================================================== Step = 7 Time = 0.14 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 7 Time = 0.14 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 7 Time = 0.14 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(14%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 8 : 0.16 ===== Setting parameter "scale" to : 0.16 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.16 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.566862e-15 0.000000e+00 energy 1.020301e-07 4.246933e-11 1.020301e-09 displacement 1.031984e-03 1.031984e-03 1.031984e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.16 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.215906e-27 0.000000e+00 energy 1.020301e-07 6.804036e-20 1.020301e-09 displacement 1.031984e-03 1.936992e-10 1.031110e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.16 Data Record #1 =========================================================================== Step = 8 Time = 0.16 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 8 Time = 0.16 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 8 Time = 0.16 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(16%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 9 : 0.18 ===== Setting parameter "scale" to : 0.18 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.18 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.570025e-15 0.000000e+00 energy 1.019455e-07 4.231389e-11 1.019455e-09 displacement 1.030238e-03 1.030238e-03 1.030238e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.18 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.194119e-27 0.000000e+00 energy 1.019455e-07 6.740992e-20 1.019455e-09 displacement 1.030238e-03 1.923586e-10 1.029368e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.18 Data Record #1 =========================================================================== Step = 9 Time = 0.18 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 9 Time = 0.18 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 9 Time = 0.18 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(18%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 10 : 0.2 ===== Setting parameter "scale" to : 0.2 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 1.573212e-15 0.000000e+00 energy 1.018612e-07 4.215828e-11 1.018612e-09 displacement 1.028500e-03 1.028500e-03 1.028500e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 8.172899e-27 0.000000e+00 energy 1.018612e-07 6.677703e-20 1.018612e-09 displacement 1.028500e-03 1.910218e-10 1.027634e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.2 Data Record #1 =========================================================================== Step = 10 Time = 0.2 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 10 Time = 0.2 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 10 Time = 0.2 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(20%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 11 : 0.22 ===== Setting parameter "scale" to : 0.22 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.22 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.576425e-15 0.000000e+00 energy 1.017773e-07 4.200250e-11 1.017773e-09 displacement 1.026770e-03 1.026770e-03 1.026770e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.22 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.150744e-27 0.000000e+00 energy 1.017773e-07 6.614184e-20 1.017773e-09 displacement 1.026770e-03 1.896887e-10 1.025908e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.22 Data Record #1 =========================================================================== Step = 11 Time = 0.22 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 11 Time = 0.22 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 11 Time = 0.22 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(22%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 12 : 0.24 ===== Setting parameter "scale" to : 0.24 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.24 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.579663e-15 0.000000e+00 energy 1.016936e-07 4.184655e-11 1.016936e-09 displacement 1.025048e-03 1.025048e-03 1.025048e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.24 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.127708e-27 0.000000e+00 energy 1.016936e-07 6.550124e-20 1.016936e-09 displacement 1.025048e-03 1.883594e-10 1.024190e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.24 Data Record #1 =========================================================================== Step = 12 Time = 0.24 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 12 Time = 0.24 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 12 Time = 0.24 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(24%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 13 : 0.26 ===== Setting parameter "scale" to : 0.26 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.26 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.582927e-15 0.000000e+00 energy 1.016103e-07 4.169045e-11 1.016103e-09 displacement 1.023333e-03 1.023333e-03 1.023333e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.26 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.105019e-27 0.000000e+00 energy 1.016103e-07 6.486013e-20 1.016103e-09 displacement 1.023333e-03 1.870340e-10 1.022479e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.26 Data Record #1 =========================================================================== Step = 13 Time = 0.26 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 13 Time = 0.26 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 13 Time = 0.26 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(26%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 14 : 0.28 ===== Setting parameter "scale" to : 0.28 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.28 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.586218e-15 0.000000e+00 energy 1.015273e-07 4.153419e-11 1.015273e-09 displacement 1.021626e-03 1.021626e-03 1.021626e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.28 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.080961e-27 0.000000e+00 energy 1.015273e-07 6.422152e-20 1.015273e-09 displacement 1.021626e-03 1.857126e-10 1.020776e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.28 Data Record #1 =========================================================================== Step = 14 Time = 0.28 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 14 Time = 0.28 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 14 Time = 0.28 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(28%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 15 : 0.3 ===== Setting parameter "scale" to : 0.3 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 1.589536e-15 0.000000e+00 energy 1.014446e-07 4.137777e-11 1.014446e-09 displacement 1.019927e-03 1.019927e-03 1.019927e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 8.056318e-27 0.000000e+00 energy 1.014446e-07 6.357651e-20 1.014446e-09 displacement 1.019927e-03 1.843951e-10 1.019081e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.3 Data Record #1 =========================================================================== Step = 15 Time = 0.3 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 15 Time = 0.3 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 15 Time = 0.3 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(30%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 16 : 0.32 ===== Setting parameter "scale" to : 0.32 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.32 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.592883e-15 0.000000e+00 energy 1.013622e-07 4.122121e-11 1.013622e-09 displacement 1.018236e-03 1.018236e-03 1.018236e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.32 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.031578e-27 0.000000e+00 energy 1.013622e-07 6.293040e-20 1.013622e-09 displacement 1.018236e-03 1.830816e-10 1.017393e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.32 Data Record #1 =========================================================================== Step = 16 Time = 0.32 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 16 Time = 0.32 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 16 Time = 0.32 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(32%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 17 : 0.34 ===== Setting parameter "scale" to : 0.34 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.34 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.596258e-15 0.000000e+00 energy 1.012801e-07 4.106450e-11 1.012801e-09 displacement 1.016552e-03 1.016552e-03 1.016552e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.34 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 8.006677e-27 0.000000e+00 energy 1.012801e-07 6.228321e-20 1.012801e-09 displacement 1.016552e-03 1.817721e-10 1.015713e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.34 Data Record #1 =========================================================================== Step = 17 Time = 0.34 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 17 Time = 0.34 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 17 Time = 0.34 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(34%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 18 : 0.36 ===== Setting parameter "scale" to : 0.36 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.36 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.599663e-15 0.000000e+00 energy 1.011983e-07 4.090765e-11 1.011983e-09 displacement 1.014876e-03 1.014876e-03 1.014876e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.36 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.980814e-27 0.000000e+00 energy 1.011983e-07 6.163523e-20 1.011983e-09 displacement 1.014876e-03 1.804668e-10 1.014041e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.36 Data Record #1 =========================================================================== Step = 18 Time = 0.36 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 18 Time = 0.36 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 18 Time = 0.36 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(36%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 19 : 0.38 ===== Setting parameter "scale" to : 0.38 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.38 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.603098e-15 0.000000e+00 energy 1.011169e-07 4.075067e-11 1.011169e-09 displacement 1.013208e-03 1.013208e-03 1.013208e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.38 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.954481e-27 0.000000e+00 energy 1.011169e-07 6.098606e-20 1.011169e-09 displacement 1.013208e-03 1.791656e-10 1.012377e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.38 Data Record #1 =========================================================================== Step = 19 Time = 0.38 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 19 Time = 0.38 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 19 Time = 0.38 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(38%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 20 : 0.4 ===== Setting parameter "scale" to : 0.4 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 1.606563e-15 0.000000e+00 energy 1.010357e-07 4.059355e-11 1.010357e-09 displacement 1.011547e-03 1.011547e-03 1.011547e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 7.927976e-27 0.000000e+00 energy 1.010357e-07 6.033399e-20 1.010357e-09 displacement 1.011547e-03 1.778687e-10 1.010720e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.4 Data Record #1 =========================================================================== Step = 20 Time = 0.4 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 20 Time = 0.4 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 20 Time = 0.4 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(40%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 21 : 0.42 ===== Setting parameter "scale" to : 0.42 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.42 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.610059e-15 0.000000e+00 energy 1.009549e-07 4.043630e-11 1.009549e-09 displacement 1.009895e-03 1.009895e-03 1.009895e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.42 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.900217e-27 0.000000e+00 energy 1.009549e-07 5.968159e-20 1.009549e-09 displacement 1.009895e-03 1.765760e-10 1.009071e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.42 Data Record #1 =========================================================================== Step = 21 Time = 0.42 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 21 Time = 0.42 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 21 Time = 0.42 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(42%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 22 : 0.44 ===== Setting parameter "scale" to : 0.44 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.44 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.613588e-15 0.000000e+00 energy 1.008744e-07 4.027892e-11 1.008744e-09 displacement 1.008249e-03 1.008249e-03 1.008249e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.44 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.872829e-27 0.000000e+00 energy 1.008744e-07 5.902666e-20 1.008744e-09 displacement 1.008249e-03 1.752875e-10 1.007430e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.44 Data Record #1 =========================================================================== Step = 22 Time = 0.44 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 22 Time = 0.44 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 22 Time = 0.44 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(44%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 23 : 0.46 ===== Setting parameter "scale" to : 0.46 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.46 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.617149e-15 0.000000e+00 energy 1.007942e-07 4.012142e-11 1.007942e-09 displacement 1.006612e-03 1.006612e-03 1.006612e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.46 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.844512e-27 0.000000e+00 energy 1.007942e-07 5.837386e-20 1.007942e-09 displacement 1.006612e-03 1.740034e-10 1.005796e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.46 Data Record #1 =========================================================================== Step = 23 Time = 0.46 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 23 Time = 0.46 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 23 Time = 0.46 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(46%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 24 : 0.48 ===== Setting parameter "scale" to : 0.48 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.48 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.620744e-15 0.000000e+00 energy 1.007143e-07 3.996380e-11 1.007143e-09 displacement 1.004982e-03 1.004982e-03 1.004982e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.48 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.816222e-27 0.000000e+00 energy 1.007143e-07 5.771554e-20 1.007143e-09 displacement 1.004982e-03 1.727237e-10 1.004170e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.48 Data Record #1 =========================================================================== Step = 24 Time = 0.48 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 24 Time = 0.48 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 24 Time = 0.48 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(48%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 25 : 0.5 ===== Setting parameter "scale" to : 0.5 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 1.624372e-15 0.000000e+00 energy 1.006347e-07 3.980606e-11 1.006347e-09 displacement 1.003360e-03 1.003360e-03 1.003360e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 7.786826e-27 0.000000e+00 energy 1.006347e-07 5.705839e-20 1.006347e-09 displacement 1.003360e-03 1.714483e-10 1.002552e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.5 Data Record #1 =========================================================================== Step = 25 Time = 0.5 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 25 Time = 0.5 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 25 Time = 0.5 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(50%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 26 : 0.52 ===== Setting parameter "scale" to : 0.52 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.52 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.628035e-15 0.000000e+00 energy 1.005555e-07 3.964821e-11 1.005555e-09 displacement 1.001745e-03 1.001745e-03 1.001745e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.52 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.757637e-27 0.000000e+00 energy 1.005555e-07 5.639897e-20 1.005555e-09 displacement 1.001745e-03 1.701775e-10 1.000941e-09 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.52 Data Record #1 =========================================================================== Step = 26 Time = 0.52 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 26 Time = 0.52 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 26 Time = 0.52 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(52%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 27 : 0.54 ===== Setting parameter "scale" to : 0.54 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.54 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.631733e-15 0.000000e+00 energy 1.004765e-07 3.949025e-11 1.004765e-09 displacement 1.000138e-03 1.000138e-03 1.000138e-09 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.54 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.727514e-27 0.000000e+00 energy 1.004765e-07 5.573995e-20 1.004765e-09 displacement 1.000138e-03 1.689111e-10 9.993378e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.54 Data Record #1 =========================================================================== Step = 27 Time = 0.54 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 27 Time = 0.54 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 27 Time = 0.54 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(54%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 28 : 0.56 ===== Setting parameter "scale" to : 0.56 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.56 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.635467e-15 0.000000e+00 energy 1.003979e-07 3.933218e-11 1.003979e-09 displacement 9.985388e-04 9.985388e-04 9.985388e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.56 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.697519e-27 0.000000e+00 energy 1.003979e-07 5.507786e-20 1.003979e-09 displacement 9.985388e-04 1.676492e-10 9.977422e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.56 Data Record #1 =========================================================================== Step = 28 Time = 0.56 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 28 Time = 0.56 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 28 Time = 0.56 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(56%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 29 : 0.58 ===== Setting parameter "scale" to : 0.58 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.58 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.639238e-15 0.000000e+00 energy 1.003196e-07 3.917400e-11 1.003196e-09 displacement 9.969470e-04 9.969470e-04 9.969470e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.58 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.666624e-27 0.000000e+00 energy 1.003196e-07 5.441884e-20 1.003196e-09 displacement 9.969470e-04 1.663919e-10 9.961542e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.58 Data Record #1 =========================================================================== Step = 29 Time = 0.58 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 29 Time = 0.58 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 29 Time = 0.58 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(58%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 30 : 0.6 ===== Setting parameter "scale" to : 0.6 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 1.643046e-15 0.000000e+00 energy 1.002416e-07 3.901573e-11 1.002416e-09 displacement 9.953628e-04 9.953628e-04 9.953628e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 7.635241e-27 0.000000e+00 energy 1.002416e-07 5.375601e-20 1.002416e-09 displacement 9.953628e-04 1.651391e-10 9.945737e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.6 Data Record #1 =========================================================================== Step = 30 Time = 0.6 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 30 Time = 0.6 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 30 Time = 0.6 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(60%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 31 : 0.62 ===== Setting parameter "scale" to : 0.62 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.62 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.646893e-15 0.000000e+00 energy 1.001639e-07 3.885736e-11 1.001639e-09 displacement 9.937861e-04 9.937861e-04 9.937861e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.62 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.604186e-27 0.000000e+00 energy 1.001639e-07 5.309414e-20 1.001639e-09 displacement 9.937861e-04 1.638910e-10 9.930008e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.62 Data Record #1 =========================================================================== Step = 31 Time = 0.62 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 31 Time = 0.62 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 31 Time = 0.62 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(62%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 32 : 0.64 ===== Setting parameter "scale" to : 0.64 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.64 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.650778e-15 0.000000e+00 energy 1.000866e-07 3.869889e-11 1.000866e-09 displacement 9.922169e-04 9.922169e-04 9.922169e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.64 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.572529e-27 0.000000e+00 energy 1.000866e-07 5.243016e-20 1.000866e-09 displacement 9.922169e-04 1.626476e-10 9.914355e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.64 Data Record #1 =========================================================================== Step = 32 Time = 0.64 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 32 Time = 0.64 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 32 Time = 0.64 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(64%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 33 : 0.66 ===== Setting parameter "scale" to : 0.66 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.66 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.654702e-15 0.000000e+00 energy 1.000095e-07 3.854033e-11 1.000095e-09 displacement 9.906554e-04 9.906554e-04 9.906554e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.66 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.540249e-27 0.000000e+00 energy 1.000095e-07 5.176503e-20 1.000095e-09 displacement 9.906554e-04 1.614088e-10 9.898776e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.66 Data Record #1 =========================================================================== Step = 33 Time = 0.66 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 33 Time = 0.66 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 33 Time = 0.66 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(66%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 34 : 0.68 ===== Setting parameter "scale" to : 0.68 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.68 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.658667e-15 0.000000e+00 energy 9.993279e-08 3.838168e-11 9.993279e-10 displacement 9.891013e-04 9.891013e-04 9.891013e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.68 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.507376e-27 0.000000e+00 energy 9.993279e-08 5.110320e-20 9.993279e-10 displacement 9.891013e-04 1.601748e-10 9.883273e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.68 Data Record #1 =========================================================================== Step = 34 Time = 0.68 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 34 Time = 0.68 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 34 Time = 0.68 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(68%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 35 : 0.7 ===== Setting parameter "scale" to : 0.7 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 1.662673e-15 0.000000e+00 energy 9.985638e-08 3.822294e-11 9.985638e-10 displacement 9.875547e-04 9.875547e-04 9.875547e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 7.474760e-27 0.000000e+00 energy 9.985638e-08 5.043764e-20 9.985638e-10 displacement 9.875547e-04 1.589455e-10 9.867845e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.7 Data Record #1 =========================================================================== Step = 35 Time = 0.7 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 35 Time = 0.7 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 35 Time = 0.7 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(70%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 36 : 0.72 ===== Setting parameter "scale" to : 0.72 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.72 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.666720e-15 0.000000e+00 energy 9.978029e-08 3.806412e-11 9.978029e-10 displacement 9.860157e-04 9.860157e-04 9.860157e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.72 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.441286e-27 0.000000e+00 energy 9.978029e-08 4.977190e-20 9.978029e-10 displacement 9.860157e-04 1.577210e-10 9.852492e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.72 Data Record #1 =========================================================================== Step = 36 Time = 0.72 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 36 Time = 0.72 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 36 Time = 0.72 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(72%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 37 : 0.74 ===== Setting parameter "scale" to : 0.74 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.74 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.670810e-15 0.000000e+00 energy 9.970452e-08 3.790521e-11 9.970452e-10 displacement 9.844841e-04 9.844841e-04 9.844841e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.74 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.407552e-27 0.000000e+00 energy 9.970452e-08 4.910676e-20 9.970452e-10 displacement 9.844841e-04 1.565013e-10 9.837213e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.74 Data Record #1 =========================================================================== Step = 37 Time = 0.74 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 37 Time = 0.74 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 37 Time = 0.74 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(74%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 38 : 0.76 ===== Setting parameter "scale" to : 0.76 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.76 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.674943e-15 0.000000e+00 energy 9.962907e-08 3.774623e-11 9.962907e-10 displacement 9.829600e-04 9.829600e-04 9.829600e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.76 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.374018e-27 0.000000e+00 energy 9.962907e-08 4.844160e-20 9.962907e-10 displacement 9.829600e-04 1.552864e-10 9.822010e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.76 Data Record #1 =========================================================================== Step = 38 Time = 0.76 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 38 Time = 0.76 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 38 Time = 0.76 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(76%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 39 : 0.78 ===== Setting parameter "scale" to : 0.78 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.78 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.679119e-15 0.000000e+00 energy 9.955393e-08 3.758717e-11 9.955393e-10 displacement 9.814433e-04 9.814433e-04 9.814433e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.78 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.339726e-27 0.000000e+00 energy 9.955393e-08 4.777506e-20 9.955393e-10 displacement 9.814433e-04 1.540764e-10 9.806880e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.78 Data Record #1 =========================================================================== Step = 39 Time = 0.78 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 39 Time = 0.78 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 39 Time = 0.78 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(78%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 40 : 0.8 ===== Setting parameter "scale" to : 0.8 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 1.683341e-15 0.000000e+00 energy 9.947911e-08 3.742803e-11 9.947911e-10 displacement 9.799341e-04 9.799341e-04 9.799341e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 7.304907e-27 0.000000e+00 energy 9.947911e-08 4.710944e-20 9.947911e-10 displacement 9.799341e-04 1.528713e-10 9.791825e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.8 Data Record #1 =========================================================================== Step = 40 Time = 0.8 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 40 Time = 0.8 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 40 Time = 0.8 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(80%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 41 : 0.82 ===== Setting parameter "scale" to : 0.82 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.82 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.687608e-15 0.000000e+00 energy 9.940461e-08 3.726882e-11 9.940461e-10 displacement 9.784323e-04 9.784323e-04 9.784323e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.82 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.269737e-27 0.000000e+00 energy 9.940461e-08 4.644512e-20 9.940461e-10 displacement 9.784323e-04 1.516711e-10 9.776845e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.82 Data Record #1 =========================================================================== Step = 41 Time = 0.82 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 41 Time = 0.82 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 41 Time = 0.82 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(82%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 42 : 0.84 ===== Setting parameter "scale" to : 0.84 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.84 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.691921e-15 0.000000e+00 energy 9.933043e-08 3.710954e-11 9.933043e-10 displacement 9.769380e-04 9.769380e-04 9.769380e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.84 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.234834e-27 0.000000e+00 energy 9.933043e-08 4.577770e-20 9.933043e-10 displacement 9.769380e-04 1.504759e-10 9.761938e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.84 Data Record #1 =========================================================================== Step = 42 Time = 0.84 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 42 Time = 0.84 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 42 Time = 0.84 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(84%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 43 : 0.86 ===== Setting parameter "scale" to : 0.86 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.86 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.696281e-15 0.000000e+00 energy 9.925657e-08 3.695020e-11 9.925657e-10 displacement 9.754510e-04 9.754510e-04 9.754510e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.86 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.199253e-27 0.000000e+00 energy 9.925657e-08 4.511170e-20 9.925657e-10 displacement 9.754510e-04 1.492856e-10 9.747106e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.86 Data Record #1 =========================================================================== Step = 43 Time = 0.86 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 43 Time = 0.86 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 43 Time = 0.86 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(86%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 44 : 0.88 ===== Setting parameter "scale" to : 0.88 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.88 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.700688e-15 0.000000e+00 energy 9.918302e-08 3.679079e-11 9.918302e-10 displacement 9.739714e-04 9.739714e-04 9.739714e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.88 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.163204e-27 0.000000e+00 energy 9.918302e-08 4.444789e-20 9.918302e-10 displacement 9.739714e-04 1.481003e-10 9.732347e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.88 Data Record #1 =========================================================================== Step = 44 Time = 0.88 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 44 Time = 0.88 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 44 Time = 0.88 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(88%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 45 : 0.9 ===== Setting parameter "scale" to : 0.9 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 1.705144e-15 0.000000e+00 energy 9.910980e-08 3.663131e-11 9.910980e-10 displacement 9.724993e-04 9.724993e-04 9.724993e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 7.127278e-27 0.000000e+00 energy 9.910980e-08 4.377968e-20 9.910980e-10 displacement 9.724993e-04 1.469200e-10 9.717662e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.9 Data Record #1 =========================================================================== Step = 45 Time = 0.9 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 45 Time = 0.9 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 45 Time = 0.9 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(90%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 46 : 0.92 ===== Setting parameter "scale" to : 0.92 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.92 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.709650e-15 0.000000e+00 energy 9.903689e-08 3.647177e-11 9.903689e-10 displacement 9.710344e-04 9.710344e-04 9.710344e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.92 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.090874e-27 0.000000e+00 energy 9.903689e-08 4.311365e-20 9.903689e-10 displacement 9.710344e-04 1.457447e-10 9.703050e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.92 Data Record #1 =========================================================================== Step = 46 Time = 0.92 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 46 Time = 0.92 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 46 Time = 0.92 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(92%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 47 : 0.94 ===== Setting parameter "scale" to : 0.94 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.94 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.714205e-15 0.000000e+00 energy 9.896430e-08 3.631217e-11 9.896430e-10 displacement 9.695770e-04 9.695770e-04 9.695770e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.94 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.055005e-27 0.000000e+00 energy 9.896430e-08 4.245083e-20 9.896430e-10 displacement 9.695770e-04 1.445745e-10 9.688512e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.94 Data Record #1 =========================================================================== Step = 47 Time = 0.94 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 47 Time = 0.94 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 47 Time = 0.94 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(94%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 48 : 0.96 ===== Setting parameter "scale" to : 0.96 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.96 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.718812e-15 0.000000e+00 energy 9.889203e-08 3.615252e-11 9.889203e-10 displacement 9.681268e-04 9.681268e-04 9.681268e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.96 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 7.017716e-27 0.000000e+00 energy 9.889203e-08 4.178495e-20 9.889203e-10 displacement 9.681268e-04 1.434094e-10 9.674048e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.96 Data Record #1 =========================================================================== Step = 48 Time = 0.96 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 48 Time = 0.96 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 48 Time = 0.96 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(96%) tempModel.feb - FEBio 3.2.0 ===== beginning time step 49 : 0.98 ===== Setting parameter "scale" to : 0.98 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 1 Nonlinear solution status: time= 0.98 stiffness updates = 0 right hand side evaluations = 2 stiffness matrix reformations = 1 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 1.723470e-15 0.000000e+00 energy 9.882009e-08 3.599280e-11 9.882009e-10 displacement 9.666840e-04 9.666840e-04 9.666840e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 2 Nonlinear solution status: time= 0.98 stiffness updates = 0 right hand side evaluations = 3 stiffness matrix reformations = 2 step from line search = 1.000000 convergence norms : INITIAL CURRENT REQUIRED residual 5.555556e-11 6.980783e-27 0.000000e+00 energy 9.882009e-08 4.112149e-20 9.882009e-10 displacement 9.666840e-04 1.422493e-10 9.659656e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 0.98 Data Record #1 =========================================================================== Step = 49 Time = 0.98 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 49 Time = 0.98 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 49 Time = 0.98 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(98%) tempModel.feb - FEBio 3.2.0 MUST POINT CONTROLLER: adjusting time step. dt = 0.02 ===== beginning time step 50 : 1 ===== Setting parameter "scale" to : 1 Reforming stiffness matrix: reformation #1 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 1.728180e-15 0.000000e+00 energy 9.874846e-08 3.583304e-11 9.874846e-10 displacement 9.652485e-04 9.652485e-04 9.652485e-10 Reforming stiffness matrix: reformation #2 ===== reforming stiffness matrix: Nr of equations ........................... : 2370 Nr of nonzeroes in stiffness matrix ....... : 150358 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 5.555556e-11 6.943568e-27 0.000000e+00 energy 9.874846e-08 4.045746e-20 9.874846e-10 displacement 9.652485e-04 1.410943e-10 9.645338e-10 convergence summary number of iterations : 2 number of reformations : 2 ------- converged at time : 1 Data Record #1 =========================================================================== Step = 50 Time = 1 Data = ux;uy;uz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_disp_out.txt Data Record #2 =========================================================================== Step = 50 Time = 1 Data = Rx;Ry;Rz File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_force_out.txt Data Record #3 =========================================================================== Step = 50 Time = 1 Data = s3 File = /mnt/data/MATLAB/GIBBON/data/temp/tempModel_stress_out.txt ]0;(100%) tempModel.feb - FEBio 3.2.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 .................... : 50 Total number of equilibrium iterations ............ : 100 Average number of equilibrium iterations .......... : 2 Total number of right hand evaluations ............ : 150 Total number of stiffness reformations ............ : 100 L I N E A R S O L V E R S T A T S Total calls to linear solver ........ : 100 Avg iterations per solve ............ : 1 Time in linear solver: 0:00:03 ]0;(100%) tempModel.feb - FEBio 3.2.0 Elapsed time : 0:00:04 N O R M A L T E R M I N A T I O N * Log file found. 23-Apr-2021 19:51:11 # Parsing log file... 23-Apr-2021 19:51:11 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.02 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.04 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.06 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.08 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.1 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.12 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.14 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.16 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.18 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.2 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.22 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.24 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.26 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.28 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.3 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.32 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.34 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.36 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.38 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.4 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.42 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.44 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.46 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.48 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.5 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.52 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.54 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.56 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.58 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.6 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.62 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.64 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.66 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.68 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.7 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.72 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.74 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.76 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.78 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.8 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.82 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.84 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.86 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.88 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.9 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.92 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.94 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.96 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 0.98 23-Apr-2021 19:51:12 number of iterations : 2 23-Apr-2021 19:51:12 number of reformations : 2 23-Apr-2021 19:51:12 ------- converged at time : 1 23-Apr-2021 19:51:12 Elapsed time : 0:00:04 23-Apr-2021 19:51:12 N O R M A L T E R M I N A T I O N # Done 23-Apr-2021 19:51:12 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
Import FEBio results
if runFlag==1 %i.e. a succesful run
Importing nodal displacements from a log file
dataStruct=importFEBio_logfile(fullfile(savePath,febioLogFileName_disp),1,1); %Access data N_disp_mat=dataStruct.data; %Displacement timeVec=dataStruct.time; %Time %Create deformed coordinate set V_DEF=N_disp_mat+repmat(V,[1 1 size(N_disp_mat,3)]);
Importing element stress from a log file
dataStruct=importFEBio_logfile(fullfile(savePath,febioLogFileName_stress),1,1);
%Access data
E_stress_mat=dataStruct.data;
% Importing element stress from a log file
dataStruct=importFEBio_logfile(fullfile(savePath,febioLogFileName_force),1,1);
Plotting the simulated results using anim8 to visualize and animate deformations
[CV]=faceToVertexMeasure(E,V,E_stress_mat(:,:,end)); % Create basic view and store graphics handle to initiate animation hf=cFigure; %Open figure gtitle([febioFebFileNamePart,': Press play to animate']); title('$\sigma_{3}$ [MPa]','Interpreter','Latex') hp=gpatch(Fb,V_DEF(:,:,end),CV,'k',0.8); %Add graphics object to animate hp.Marker='.'; hp.MarkerSize=markerSize2; hp.FaceColor='interp'; axisGeom(gca,fontSize); colormap(flipud(turbo(250))); colorbar; caxis([min(E_stress_mat(:)) max(E_stress_mat(:))]); axis(axisLim(V_DEF)); %Set axis limits statically camlight headlight; % Set up animation features animStruct.Time=timeVec; %The time vector for qt=1:1:size(N_disp_mat,3) %Loop over time increments [CV]=faceToVertexMeasure(E,V,E_stress_mat(:,:,qt)); %Set entries in animation structure animStruct.Handles{qt}=[hp hp]; %Handles of objects to animate animStruct.Props{qt}={'Vertices','CData'}; %Properties of objects to animate animStruct.Set{qt}={V_DEF(:,:,qt),CV}; %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/.