source: LMDZ6/trunk/libf/dyn3dmem/nxgrad_loc.f90 @ 5308

Last change on this file since 5308 was 5285, checked in by abarral, 4 days ago

As discussed internally, remove generic ONLY: ... for new _mod_h 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.5 KB
RevLine 
[5246]1SUBROUTINE nxgrad_loc (klevel, rot, x, y )
2  !
3  ! P. Le Van
4  !
5  !   ********************************************************************
6  !  calcul du gradient tourne de pi/2 du rotationnel du vect.v
7  !   ********************************************************************
8  !   rot          est un argument  d'entree pour le s-prog
9  !   x  et y    sont des arguments de sortie pour le s-prog
10  !
[5281]11  USE comgeom_mod_h
[5246]12  USE parallel_lmdz
[5271]13  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
[5285]14USE paramet_mod_h
[5271]15IMPLICIT NONE
[5246]16  !
[5271]17
[5272]18
[5246]19  INTEGER :: klevel
20  REAL :: rot( ijb_v:ije_v,klevel ),x( ijb_u:ije_u,klevel )
21  REAL :: y(ijb_v:ije_v,klevel )
22  INTEGER :: l,ij
23  INTEGER :: ijb,ije
24  !
25  !
26!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
27  DO l = 1,klevel
28  !
29  ijb=ij_begin
30  ije=ij_end
31  if (pole_sud)  ije=ij_end-iip1
32
33  DO  ij = ijb+1, ije
34  y( ij,l ) = (  rot( ij,l ) - rot( ij-1,l )  ) * cvsurcuv( ij )
35  END DO
36  !
37  !    ..... correction pour  y ( 1,j,l )  ......
38  !
39  !    ....    y(1,j,l)= y(iip1,j,l) ....
40  !DIR$ IVDEP
41  DO  ij = ijb, ije, iip1
42  y( ij,l ) = y( ij +iim,l )
43  END DO
44  !
45  ijb=ij_begin
46  ije=ij_end+iip1
47
48  if (pole_nord)  ijb=ij_begin+iip1
49  if (pole_sud)  ije=ij_end-iip1
50
51  DO  ij = ijb,ije
52  x( ij,l ) = (  rot( ij,l ) - rot( ij -iip1,l )  ) * cusurcvu( ij )
53  END DO
54
55  if (pole_nord) then
56    DO ij = 1,iip1
57      x(    ij    ,l ) = 0.
58    ENDDO
59  endif
60
61  if (pole_sud) then
62    DO ij = 1,iip1
63      x( ij +ip1jm,l ) = 0.
64    ENDDO
65  endif
66  !
67  END DO
68!$OMP END DO NOWAIT
69  RETURN
70END SUBROUTINE nxgrad_loc
Note: See TracBrowser for help on using the repository browser.