source: LMDZ6/trunk/libf/dyn3d/dudv2.f90 @ 5300

Last change on this file since 5300 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
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1!
2! $Header$
3!
4SUBROUTINE dudv2 ( teta, pkf, bern, du, dv  )
5  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
6  USE paramet_mod_h
7  IMPLICIT NONE
8  !
9  !=======================================================================
10  !
11  !   Auteur:  P. Le Van
12  !   -------
13  !
14  !   Objet:
15  !   ------
16  !
17  !   *****************************************************************
18  !   ..... calcul du terme de pression (gradient de p/densite )   et
19  !      du terme de ( -gradient de la fonction de Bernouilli ) ...
20  !   *****************************************************************
21  !      Ces termes sont ajoutes a  d(ucov)/dt et a d(vcov)/dt  ..
22  !
23  !
24  !    teta , pkf, bern  sont des arguments d'entree  pour le s-pg  ....
25  !    du et dv          sont des arguments de sortie pour le s-pg  ....
26  !
27  !=======================================================================
28  REAL :: teta( ip1jmp1,llm ),pkf( ip1jmp1,llm ) ,bern( ip1jmp1,llm ), &
29        du( ip1jmp1,llm ),  dv( ip1jm,llm )
30  INTEGER :: l,ij
31  !
32  !
33  DO l = 1,llm
34  !
35  DO  ij  = iip2, ip1jm - 1
36   du(ij,l) = du(ij,l) + 0.5* ( teta( ij,l ) + teta( ij+1,l ) ) * &
37         ( pkf( ij,l ) - pkf(ij+1,l) )  + bern(ij,l) - bern(ij+1,l)
38  END DO
39  !
40  !
41  !    .....  correction  pour du(iip1,j,l),  j=2,jjm   ......
42  !    ...          du(iip1,j,l) = du(1,j,l)                 ...
43  !
44  !DIR$ IVDEP
45  DO ij = iip1+ iip1, ip1jm, iip1
46  du( ij,l ) = du( ij - iim,l )
47  END DO
48  !
49  !
50  DO ij  = 1,ip1jm
51  dv( ij,l) = dv(ij,l) + 0.5 * ( teta(ij,l) + teta( ij+iip1,l ) ) * &
52        ( pkf(ij+iip1,l) - pkf(  ij,l  ) ) &
53        +   bern( ij+iip1,l ) - bern( ij  ,l )
54  END DO
55  !
56  END DO
57  !
58  RETURN
59END SUBROUTINE dudv2
Note: See TracBrowser for help on using the repository browser.