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

Go to the source code of this file.

Functions/Subroutines

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

Function/Subroutine Documentation

◆ writesummary()

subroutine writesummary ( integer  istep,
integer  j,
integer  icutb,
integer  l,
real*8  ttime,
real*8  time,
real*8  dtime 
)
20  implicit none
21 !
22 ! writes increment statistics in the .sta file
23 ! the close and open guarantees that the computer buffer is
24 ! emptied each time a new line is written. That way the file
25 ! is always up to data (also during the calculation)
26 !
27  integer istep,j,icutb,l
28 ! integer iostat
29  real*8 ttime,time,dtime
30 !
31  write(8,100) istep,j,icutb+1,l,ttime+time,time,dtime
32 c call flush(8)
33  flush(8)
34 !
35 ! for some unix systems flush has two arguments
36 !
37 ! call flush(8,iostat)
38 ! if(iostat.lt.0) then
39 ! write(*,*) '*ERROR in writesummary: cannot flush buffer'
40 ! call exit(201)
41 ! endif
42 !
43  100 format(1x,i5,1x,i10,2(1x,i5),3(1x,e13.6))
44 !
45  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)