| 1 | SUBROUTINE rotat_nfil_loc (klevel, x, y, rot ) |
|---|
| 2 | ! |
|---|
| 3 | ! Auteur : P.Le Van |
|---|
| 4 | !************************************************************** |
|---|
| 5 | !. Calcule le rotationnel non filtre , |
|---|
| 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 |
|---|
| 11 | ! |
|---|
| 12 | USE comgeom_mod_h |
|---|
| 13 | USE parallel_lmdz |
|---|
| 14 | USE dimensions_mod, ONLY: iim, jjm, llm, ndm |
|---|
| 15 | USE paramet_mod_h |
|---|
| 16 | IMPLICIT NONE |
|---|
| 17 | ! |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | ! |
|---|
| 21 | ! ..... variables en arguments ...... |
|---|
| 22 | ! |
|---|
| 23 | INTEGER :: klevel |
|---|
| 24 | REAL :: rot( ijb_v:ije_v,klevel ) |
|---|
| 25 | REAL :: x( ijb_u:ije_u,klevel ), y( ijb_v:ije_v,klevel ) |
|---|
| 26 | ! |
|---|
| 27 | ! ... variables locales ... |
|---|
| 28 | ! |
|---|
| 29 | INTEGER :: l, ij |
|---|
| 30 | INTEGER :: ijb,ije |
|---|
| 31 | ! |
|---|
| 32 | ! |
|---|
| 33 | ijb=ij_begin |
|---|
| 34 | ije=ij_end |
|---|
| 35 | if(pole_sud) ije=ij_end-iip1 |
|---|
| 36 | !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
|---|
| 37 | DO l = 1,klevel |
|---|
| 38 | ! |
|---|
| 39 | DO ij = ijb, ije - 1 |
|---|
| 40 | rot( ij,l ) = y( ij+1 , l ) - y( ij,l ) + & |
|---|
| 41 | x(ij +iip1, l ) - x( ij,l ) |
|---|
| 42 | ENDDO |
|---|
| 43 | ! |
|---|
| 44 | ! .... correction pour rot( iip1,j,l) .... |
|---|
| 45 | ! .... rot(iip1,j,l)= rot(1,j,l) ... |
|---|
| 46 | !DIR$ IVDEP |
|---|
| 47 | DO ij = ijb+iip1-1, ije, iip1 |
|---|
| 48 | rot( ij,l ) = rot( ij -iim,l ) |
|---|
| 49 | ENDDO |
|---|
| 50 | ! |
|---|
| 51 | END DO |
|---|
| 52 | !$OMP END DO NOWAIT |
|---|
| 53 | RETURN |
|---|
| 54 | END SUBROUTINE rotat_nfil_loc |
|---|