source: LMDZ6/branches/Amaury_dev/libf/dyn3d_common/laplacien_rot.f90 @ 5127

Last change on this file since 5127 was 5106, checked in by abarral, 3 months ago

Turn coefils.h into lmdz_coefils.f90
Put filtreg.F90 inside lmdz_filtreg.F90
Turn mod_filtreg_p.F90 into lmdz_filtreg_p.F90
Delete obsolete parafilt.h*
(lint) remove spaces between routine name and args

  • 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
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1
2! $Header$
3
4SUBROUTINE laplacien_rot( klevel, rotin, rotout,ghx,ghy )
5  !
6  !    P. Le Van
7  !
8  !   ************************************************************
9  !    ...  calcul de  ( rotat x nxgrad )  du rotationnel rotin  .
10  !   ************************************************************
11  !
12  ! klevel et rotin  sont des arguments  d'entree pour le s-prog
13  !  rotout           est  un argument  de sortie pour le s-prog
14  !
15  USE lmdz_filtreg, ONLY: filtreg
16  IMPLICIT NONE
17  !
18  INCLUDE "dimensions.h"
19  INCLUDE "paramet.h"
20  INCLUDE "comgeom.h"
21
22  !
23  !   ..........    variables  en  arguments     .............
24  !
25  INTEGER :: klevel
26  REAL :: rotin( ip1jm,klevel ), rotout( ip1jm,klevel )
27  !
28  !   ..........    variables   locales       ................
29  !
30  REAL :: ghy(ip1jm,klevel), ghx(ip1jmp1,klevel)
31  !   ........................................................
32  !
33  !
34  CALL  filtreg ( rotin ,   jjm, klevel,   2, 1, .FALSE., 1 )
35
36  CALL   nxgrad ( klevel, rotin,   ghx ,  ghy               )
37  CALL   rotatf  ( klevel, ghx  ,   ghy , rotout             )
38  !
39  RETURN
40END SUBROUTINE laplacien_rot
Note: See TracBrowser for help on using the repository browser.