source: LMDZ.3.3/tags/IPSL-CM4_LJ29/libf/bibio/formcoord.F @ 494

Last change on this file since 494 was 494, checked in by (none), 20 years ago

This commit was manufactured by cvs2svn to create tag
'IPSL-CM4_LJ29'.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1      subroutine formcoord(unit,n,x,a,rev,text)
2      implicit none
3      integer n,unit,ndec
4      logical rev
5      real x(n),a
6      character*4 text
7
8      integer i,id,i1,i2,in
9      real dx,dxmin
10
11      if(rev) then
12         id=-1
13         i1=n
14         i2=n-1
15         in=1
16         write(unit,3000) text(1:1)
17      else
18         id=1
19         i1=1
20         i2=2
21         in=n
22      endif
23
24      if (n.lt.2) then
25         ndec=1
26         write(unit,1000) text,n,x(1)*a
27      else
28         dxmin=abs(x(2)-x(1))
29         do i=2,n-1
30            dx=abs(x(i+1)-x(i))
31            if (dx.lt.dxmin) dxmin=dx
32         enddo
33
34         ndec=-log10(dxmin)+2
35         if(mod(n,6).eq.1) then
36            write(unit,1000) text,n,x(i1)*a
37            write(unit,2000) (x(i)*a,i=i2,in,id)
38         else
39            write(unit,1000) text,n
40            write(unit,2000) (x(i)*a,i=i1,in,id)
41         endif
42      endif
43
441000  format(a4,2x,i4,' LEVELS',43x,f12.2)
452000  format(6f12.2)
46c1000  format(a4,2x,i4,' LEVELS',43x,f12.<ndec>)
47c2000  format(6f12.<ndec>)
483000  format('FORMAT ',a1,'REV')
49      return
50
51      end
Note: See TracBrowser for help on using the repository browser.