1!
2!     CalculiX - A 3-dimensional finite element program
3!              Copyright (C) 1998-2021 Guido Dhondt
4!
5!     This program is free software; you can redistribute it and/or
6!     modify it under the terms of the GNU General Public License as
7!     published by the Free Software Foundation(version 2);
8!
9!
10!     This program is distributed in the hope that it will be useful,
11!     but WITHOUT ANY WARRANTY; without even the implied warranty of
12!     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13!     GNU General Public License for more details.
14!
15!     You should have received a copy of the GNU General Public License
16!     along with this program; if not, write to the Free Software
17!     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18!
19      subroutine writerandomfield(d,relerr,imodes)
20!
21!     writes the error measures of the randomfield in the .dat file
22!
23      implicit none
24!
25      integer imodes
26      real*8 d,relerr
27!
28      if(imodes.eq.1) then
29         write(5,*)
30         write(5,*) 'SPECTRAL DECOMPOSITION OF RANDOMFIELD'
31         write(5,*) 'MODESHAPE   EIGENVALUE   GLOBAL RELIABILITY'
32         write(5,*)
33         write(5,'(1x,i3.3,6x,e13.4,e13.4)') imodes,d,relerr
34      else
35         write(5,'(1x,i3.3,6x,e13.4,e13.4)') imodes,d,relerr
36      endif
37!
38      return
39      end
40
41