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

Go to the source code of this file.

Functions/Subroutines

subroutine writerandomfield (d, nev, abserr, relerr)
 

Function/Subroutine Documentation

◆ writerandomfield()

subroutine writerandomfield ( real*8, dimension(*)  d,
integer  nev,
real*8  abserr,
real*8  relerr 
)
20 !
21 ! writes the eigenvalues and the error measures of
22 ! the randomfield in the .dat file
23 !
24  implicit none
25 !
26  integer iobject,i,nev
27  real*8 d(*),abserr,relerr
28 !
29  write(5,*)
30  write(5,*) 'EIGENVALUES OF MODESHAPES OF RANDOMFIELD'
31  write(5,*)
32  do i=nev,1,-1
33  write(5,'(7x,e14.7)') d(i)
34  enddo
35 !
36  write(5,*)
37  write(5,*) 'ABSOLUTE ERROR W.R.T. THE VARIANCE OF THE RANDOMFIELD'
38  write(5,*)
39  write(5,'(7x,e14.7)') abserr
40  write(5,*)
41  write(5,*) 'RELATIVE ERROR W.R.T. THE VARIANCE OF THE RANDOMFIELD'
42  write(5,*)
43  write(5,'(7x,e14.7)') relerr
44 
45  return
Hosted by OpenAircraft.com, (Michigan UAV, LLC)