Last change
on this file since 3871 was
3104,
checked in by oboucher, 7 years ago
|
Removing x permission from this file
|
-
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
|
File size:
454 bytes
|
Rev | Line | |
---|
[1170] | 1 | |
---|
| 2 | SUBROUTINE 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.