source: LMDZ6/trunk/libf/dyn3d_common/invert_lat.F90 @ 3006

Last change on this file since 3006 was 1945, checked in by lguez, 10 years ago

Duplicated files moved to dyn3d_common.

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
  • 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.