source: LMDZ6/branches/Amaury_dev/libf/dyn3dmem/rotatf_loc.f90 @ 5295

Last change on this file since 5295 was 5159, checked in by abarral, 3 months ago

Put dimensions.h and paramet.h into modules

  • 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: 1.7 KB
RevLine 
[5106]1SUBROUTINE rotatf_loc(klevel, x, y, rot )
[5159]2
[5105]3  ! Auteur : P.Le Van
4  !**************************************************************
5  !.  calcule le rotationnel
6  ! a tous les niveaux d'1 vecteur de comp. x et y ..
7  !   x  et  y etant des composantes  covariantes  ...
8  !********************************************************************
9  !   klevel, x  et y   sont des arguments d'entree pour le s-prog
10  !        rot          est  un argument  de sortie pour le s-prog
[5159]11
[5105]12  USE parallel_lmdz
[5106]13  USE lmdz_filtreg_p
[5136]14  USE lmdz_comgeom
15
[5159]16USE lmdz_dimensions, ONLY: iim, jjm, llm, ndm
17  USE lmdz_paramet
[5105]18  IMPLICIT NONE
19  !
[5159]20
21
22
[5105]23  !   .....  variables en arguments  ......
[5159]24
[5105]25  INTEGER :: klevel
26  REAL :: rot( ijb_v:ije_v,klevel )
27  REAL :: x( ijb_u:ije_u,klevel ), y( ijb_v:ije_v,klevel )
[5159]28
[5105]29  !  ...   variables  locales  ...
[5159]30
[5105]31  INTEGER :: l, ij
32  INTEGER :: ijb,ije,jjb,jje
[5159]33
34
[5105]35  ijb=ij_begin
36  ije=ij_end
[5116]37  IF(pole_sud) ije=ij_end-iip1
[1632]38
[5105]39!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
40  DO  l = 1,klevel
[5159]41
[5105]42    DO   ij = ijb, ije - 1
43     rot( ij,l )  =    y( ij+1 , l )  -  y( ij,l )   + &
44           x(ij +iip1, l )  -  x( ij,l )
45    ENDDO
[5159]46
[5105]47  !    .... correction pour rot( iip1,j,l)  ....
48  !    ....   rot(iip1,j,l)= rot(1,j,l) ...
49  !DIR$ IVDEP
50    DO  ij = ijb+iip1-1, ije, iip1
51     rot( ij,l ) = rot( ij -iim,l )
52    ENDDO
[5159]53
[5105]54  END DO
55!$OMP END DO NOWAIT
56    jjb=jj_begin
57    jje=jj_end
[5117]58    IF (pole_sud) jje=jj_end-1
[5105]59    CALL filtreg_p( rot, jjb_v, jje_v,jjb,jje,jjm, &
60          klevel, 2, 2, .FALSE., 1 )
[1632]61
[5105]62!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
63    DO l = 1, klevel
64      DO ij = ijb, ije
65       rot(ij,l) = rot(ij,l) * unsairez(ij)
66      ENDDO
67    ENDDO
68!$OMP END DO NOWAIT
[5159]69
[5105]70  !
71
72END SUBROUTINE rotatf_loc
Note: See TracBrowser for help on using the repository browser.