/[lmdze]/trunk/dyn3d/laplacien.f
ViewVC logotype

Diff of /trunk/dyn3d/laplacien.f

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 106 by guez, Tue Sep 9 12:54:30 2014 UTC revision 265 by guez, Tue Mar 20 09:35:59 2018 UTC
# Line 10  contains Line 10  contains
10      ! P. Le Van      ! P. Le Van
11      ! Calcul de div(grad) de teta.      ! Calcul de div(grad) de teta.
12    
13      use dimens_m, only: iim, jjm      use dimensions, only: iim, jjm
14      use divergf_m, only: divergf      use divergf_m, only: divergf
15      use filtreg_m, only: filtreg      use filtreg_scal_m, only: filtreg_scal
16      use grad_m, only: grad      use grad_m, only: grad
17      USE paramet_m, ONLY: ip1jm, ip1jmp1, jjp1      USE paramet_m, ONLY: ip1jm, ip1jmp1
18    
19      INTEGER, intent(in):: klevel      INTEGER, intent(in):: klevel
20      REAL, intent(inout):: teta(iim + 1, jjm + 1, klevel)      REAL, intent(inout):: teta(iim + 1, jjm + 1, klevel)
# Line 24  contains Line 24  contains
24    
25      !-----------------------------------------------------------------      !-----------------------------------------------------------------
26    
27      CALL filtreg(teta, jjp1, klevel, 2, 1, .TRUE.)      CALL filtreg_scal(teta, direct = .true., intensive = .true.)
28      CALL grad(klevel, teta, ghx, ghy)      CALL grad(klevel, teta, ghx, ghy)
29      CALL divergf(klevel, ghx, ghy, teta)      CALL divergf(klevel, ghx, ghy, teta)
30    

Legend:
Removed from v.106  
changed lines
  Added in v.265

  ViewVC Help
Powered by ViewVC 1.1.21