CalculiX  2.13
A Free Software Three-Dimensional Structural Finite Element Program
writesummarydiv.f File Reference

Go to the source code of this file.

Functions/Subroutines

subroutine writesummarydiv (istep, j, icutb, l, ttime, time, dtime)
 

Function/Subroutine Documentation

◆ writesummarydiv()

subroutine writesummarydiv ( integer  istep,
integer  j,
integer  icutb,
integer  l,
real*8  ttime,
real*8  time,
real*8  dtime 
)
20 !
21  implicit none
22 !
23 ! writes increment statistics in the .sta file
24 ! the close and open guarantees that the computer buffer is
25 ! emptied each time a new line is written. That way the file
26 ! is always up to data (also during the calculation)
27 !
28 ! this version of writesummary is meant for increments which did
29 ! not converge
30 !
31  integer istep,j,icutb,l
32  real*8 ttime,time,dtime
33 !
34  write(8,100) istep,j,icutb+1,l,ttime+time-dtime,time-dtime,dtime
35  flush(8)
36 !
37  100 format(1x,i5,1x,i10,1x,i5,'U',1x,i4,3(1x,e13.6))
38 !
39  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)