source: LMDZ4/branches/LMDZ4_AR5/libf/dyn3dpar/invert_lat.F90 @ 1476

Last change on this file since 1476 was 1279, checked in by Laurent Fairhead, 14 years ago

Merged LMDZ4-dev branch changes r1241:1278 into the trunk
Running trunk and LMDZ4-dev in LMDZOR configuration on local
machine (sequential) and SX8 (4-proc) yields identical results
(restart and restartphy are identical binarily)
Log history from r1241 to r1278 is available by switching to
source:LMDZ4/branches/LMDZ4-dev-20091210

  • Property svn:executable set to *
File size: 454 bytes
Line 
1
2SUBROUTINE invert_lat(xsize,ysize,vsize,field)
3
4    IMPLICIT NONE
5 
6! Input variables
7    INTEGER, INTENT(IN) :: xsize,ysize,vsize
8    REAL, DIMENSION (xsize,ysize,vsize), INTENT(INOUT) :: field
9! Local variables
10    REAL, DIMENSION (xsize,ysize,vsize)                :: f_aux
11    INTEGER :: l,j
12 
13    DO l=1,vsize
14        DO j=1,ysize
15            f_aux(:,j,l)=field(:,ysize+1-j,l)
16        END DO
17    END DO
18   
19    field=f_aux
20
21    END SUBROUTINE invert_lat
Note: See TracBrowser for help on using the repository browser.