source: trunk/LMDZ.COMMON/libf/dyn3dpar/dudv2_p.F @ 1019

Last change on this file since 1019 was 1019, checked in by emillour, 11 years ago

Common dynamics; keep up with updates (seq and ) in LMDZ5 (up tio rev 1845):

  • General stuff:
  • makelmdz_fcm: add options -j # (compile using # threads) and -full, and to keep up

with Earth model, possibility to compile with various versions of orchidee

  • bld.cfg: adaptations to enable compiling using multiple threads
  • build_gcm: adaptations to enable compiling using multiple threads
  • makelmdz: keep up with Earth model: possibility to compile with various versions of orchidee + cosmetic changes + library directory name change
  • bibio:
  • wxios.F90 : Added for possible future use of XIOS library
  • filtrez:
  • mkl_dft_type.f90 & mkl_dfti.f90 : MKL (for MKL FFT) interface definitions
  • filtreg_mod : limit use of FFT to parallel mode
  • mod_filtre_fft.F90 & mod_filtre_fft_lov.F90 : swich to use parallel_lmdz
  • dyn3d:
  • abort_gcm.F : add things for xios
  • advtrac.F90 : minor change in CFL outputs
  • ce0l.F90 : indicesol.h is now module indice_sol_mod
  • comvert.h : cosmetic change on comments
  • gcm.F : add xios and use module indice_sol_mod (for INCA)
  • inigeom.F : move two computations outside loop
  • dyn3dpar:
  • parallel.F90 => parallel_lmdz.F90 : and change all the "use parallel" into "use parallel_lmdz" in all files in dyn3dpar
  • comvert.h : cosmetic change on comments
  • gcm.F : add xios and use module indice_sol_mod (for INCA)
  • leapfrog_p.F : add xios + correction for times in Newtonian case
  • ce0l.F90 : indicesol.h is now module indice_sol_mod
  • inigeom.F : move two computations outside loop

EM

File size: 1.9 KB
Line 
1      SUBROUTINE dudv2_p ( teta, pkf, bern, du, dv  )
2      USE parallel_lmdz
3      IMPLICIT NONE
4c
5c=======================================================================
6c
7c   Auteur:  P. Le Van
8c   -------
9c
10c   Objet:
11c   ------
12c
13c   *****************************************************************
14c   ..... calcul du terme de pression (gradient de p/densite )   et
15c          du terme de ( -gradient de la fonction de Bernouilli ) ...
16c   *****************************************************************
17c          Ces termes sont ajoutes a  d(ucov)/dt et a d(vcov)/dt  ..
18c
19c
20c    teta , pkf, bern  sont des arguments d'entree  pour le s-pg  ....
21c    du et dv          sont des arguments de sortie pour le s-pg  ....
22c
23c=======================================================================
24c
25#include "dimensions.h"
26#include "paramet.h"
27#include "comvert.h"
28
29      REAL teta( ip1jmp1,llm ),pkf( ip1jmp1,llm ) ,bern( ip1jmp1,llm ),
30     *         du( ip1jmp1,llm ),  dv( ip1jm,llm )
31      INTEGER  l,ij,ijb,ije
32c
33c
34c$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
35      DO 5 l = 1,llm
36c
37      ijb=ij_begin
38      ije=ij_end
39      if (pole_nord) ijb=ijb+iip1
40      if (pole_sud)  ije=ije-iip1
41
42      DO 2  ij  = ijb, ije - 1
43       du(ij,l) = du(ij,l) + 0.5* ( teta( ij,l ) + teta( ij+1,l ) ) *
44     * ( pkf( ij,l ) - pkf(ij+1,l) )  + bern(ij,l) - bern(ij+1,l)
45   2  CONTINUE
46c
47c
48c    .....  correction  pour du(iip1,j,l),  j=2,jjm   ......
49c    ...          du(iip1,j,l) = du(1,j,l)                 ...
50c
51CDIR$ IVDEP
52      DO 3 ij = ijb+iip1-1, ije, iip1
53      du( ij,l ) = du( ij - iim,l )
54   3  CONTINUE
55c
56c
57      if (pole_nord) ijb=ijb-iip1
58
59      DO 4 ij  = ijb,ije
60      dv( ij,l) = dv(ij,l) + 0.5 * ( teta(ij,l) + teta( ij+iip1,l ) ) *
61     *                             ( pkf(ij+iip1,l) - pkf(  ij,l  ) )
62     *                           +   bern( ij+iip1,l ) - bern( ij  ,l )
63   4  CONTINUE
64c
65   5  CONTINUE
66c$OMP END DO NOWAIT
67c
68      RETURN
69      END
Note: See TracBrowser for help on using the repository browser.