ETS  \$Id: Doxyfile 2162 2020-02-26 14:16:09Z g2dpc $
 All Classes Files Functions Variables Pages
prarr1.f90
Go to the documentation of this file.
1 subroutine prarr1( name, array, isize, ll)
2 !
3 ! ******************************************************************
4 ! * prints 1d array(isize) with the title name. *
5 ! * if isize.lt.0, index i starts counting from 0 (rather than 1). *
6 ! * the argument ll has the double function of communicating the *
7 ! * output unit iout=ll/10 and the format switch l=ll-iout*10. *
8 ! * iout=0 (l=ll): file is "output". *
9 ! * l=1: e-format, l=2: f-format (width of 132 characters), *
10 ! * l=3: e-format, l=4: f-format (width of 80 characters). *
11 ! ******************************************************************
12 !
13 
14  use itm_types
15 
16  implicit none
17 
18  character(len=*), intent(in) :: name
19  real(r8), dimension(*), intent(in) :: array
20  integer(itm_i4), intent(in) :: isize, ll
21 
22  integer(itm_i4) :: iout, l, kstep, i, i0, is, k, kplus
23  character(len=100) :: ch_fm
24 !
25  iout = ll / 10
26  l = ll - iout * 10
27 
28  select case (l)
29  case (0)
30  return
31  case (1)
32  kstep = 8
33  ch_fm = "(1x,8(1pe12.4,'(',0p,i2,')'))"
34  if ( isize >= 100 ) ch_fm = "(1x,8(1pe11.4,'(',0p,i3,')'))"
35  case (2)
36  ch_fm = "(1x,8(f11.5,'(',i3,')'))"
37  kstep = 8
38  case (3)
39  ch_fm = "(1x,5(1pe12.4,'(',0p,i2,')'))"
40  kstep = 4
41  if ( isize >= 100 ) ch_fm = "(1x,5(1pe11.4,'(',0p,i3,')'))"
42  case (4)
43  ch_fm = "(1x,5(f11.5,'(',i3,')'))"
44  kstep = 4
45  end select
46 
47  i0 = 0
48  is = isize
49  if ( isize < 0 ) then
50  i0 = 1
51  is = -isize
52  endif
53 !
54  if ( iout == 0 ) iout = 6
55  write(iout, "(/1x,a/)") name
56  do k = 1, is, kstep
57  kplus = min(k + kstep - 1, is)
58  write(iout, ch_fm) (array(i), i - i0, i = k, kplus)
59  end do
60  return
61 !
62 
63 end subroutine prarr1
subroutine prarr1(name, array, isize, ll)
Definition: prarr1.f90:1