source: LMDZ6/branches/Amaury_dev/libf/dyn3dmem/nxgrad_loc.f90 @ 5214

Last change on this file since 5214 was 5159, checked in by abarral, 7 weeks 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.5 KB
RevLine 
[5106]1SUBROUTINE nxgrad_loc(klevel, rot, x, y )
[5159]2
[5105]3  ! P. Le Van
[5159]4
[5105]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
[5159]10
[5105]11  USE parallel_lmdz
[5136]12  USE lmdz_comgeom
13
[5159]14USE lmdz_dimensions, ONLY: iim, jjm, llm, ndm
15  USE lmdz_paramet
[5105]16  IMPLICIT NONE
17  !
[5159]18
19
[5105]20  INTEGER :: klevel
21  REAL :: rot( ijb_v:ije_v,klevel ),x( ijb_u:ije_u,klevel )
22  REAL :: y(ijb_v:ije_v,klevel )
23  INTEGER :: l,ij
24  INTEGER :: ijb,ije
[5159]25
26
[5105]27!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
28  DO l = 1,klevel
[5159]29
[5105]30  ijb=ij_begin
31  ije=ij_end
[5117]32  IF (pole_sud)  ije=ij_end-iip1
[5105]33
34  DO ij = ijb+1, ije
35  y( ij,l ) = (  rot( ij,l ) - rot( ij-1,l )  ) * cvsurcuv( ij )
36  END DO
[5159]37
[5105]38  !    ..... correction pour  y ( 1,j,l )  ......
[5159]39
[5105]40  !    ....    y(1,j,l)= y(iip1,j,l) ....
41  !DIR$ IVDEP
42  DO ij = ijb, ije, iip1
43  y( ij,l ) = y( ij +iim,l )
44  END DO
[5159]45
[5105]46  ijb=ij_begin
47  ije=ij_end+iip1
48
[5117]49  IF (pole_nord)  ijb=ij_begin+iip1
50  IF (pole_sud)  ije=ij_end-iip1
[5105]51
52  DO ij = ijb,ije
53  x( ij,l ) = (  rot( ij,l ) - rot( ij -iip1,l )  ) * cusurcvu( ij )
54  END DO
55
[5117]56  IF (pole_nord) THEN
[5105]57    DO ij = 1,iip1
58      x(    ij    ,l ) = 0.
59    ENDDO
[5117]60  ENDIF
[5105]61
[5117]62  IF (pole_sud) THEN
[5105]63    DO ij = 1,iip1
64      x( ij +ip1jm,l ) = 0.
65    ENDDO
[5117]66  ENDIF
[5159]67
[5105]68  END DO
69!$OMP END DO NOWAIT
70
71END SUBROUTINE nxgrad_loc
Note: See TracBrowser for help on using the repository browser.