source: LMDZ6/trunk/libf/dyn3dmem/dteta1_loc.f90 @ 5285

Last change on this file since 5285 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
File size: 2.1 KB
Line 
1SUBROUTINE dteta1_loc ( teta, pbaru, pbarv, dteta)
2  USE parallel_lmdz
3  USE write_field_p
4  USE mod_filtreg_p
5  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
6  USE paramet_mod_h
7IMPLICIT NONE
8
9  !=======================================================================
10  !
11  !   Auteur:  P. Le Van
12  !   -------
13  ! Modif F.Forget 03/94 (on retire q et dq  pour construire dteta1)
14  !
15  !   ********************************************************************
16  !   ... calcul du terme de convergence horizontale du flux d'enthalpie
17  !    potentielle   ......
18  !   ********************************************************************
19  !  .. teta,pbaru et pbarv sont des arguments d'entree  pour le s-pg ....
20  ! dteta                 sont des arguments de sortie pour le s-pg ....
21  !
22  !=======================================================================
23  REAL :: teta( ijb_u:ije_u,llm )
24  REAL :: pbaru( ijb_u:ije_u,llm ),pbarv( ijb_v:ije_v,llm)
25  REAL :: dteta( ijb_u:ije_u,llm )
26  INTEGER :: l,ij
27
28  REAL :: hbyv( ijb_v:ije_v,llm ), hbxu( ijb_u:ije_u,llm )
29
30  !
31  INTEGER :: ijb,ije,jjb,jje
32
33
34  jjb=jj_begin
35  jje=jj_end
36
37!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
38  DO l = 1,llm
39
40  ijb=ij_begin
41  ije=ij_end
42
43  if (pole_nord) ijb=ij_begin+iip1
44  if (pole_sud)  ije=ij_end-iip1
45
46  DO  ij = ijb, ije - 1
47    hbxu(ij,l) = pbaru(ij,l) * 0.5 * ( teta(ij,l)+teta(ij+1,l) )
48  END DO
49
50  !    .... correction pour  hbxu(iip1,j,l)  .....
51  !    ....   hbxu(iip1,j,l)= hbxu(1,j,l) ....
52
53  !DIR$ IVDEP
54  DO ij = ijb+iip1-1, ije, iip1
55    hbxu( ij, l ) = hbxu( ij - iim, l )
56  END DO
57
58  ijb=ij_begin-iip1
59  if (pole_nord) ijb=ij_begin
60
61  DO ij = ijb,ije
62    hbyv(ij,l)= pbarv(ij, l)* 0.5 * ( teta(ij, l)+teta(ij+iip1,l) )
63  END DO
64
65   if (.not. pole_sud) then
66      hbxu(ije+1:ije+iip1,l) = 0
67      hbyv(ije+1:ije+iip1,l) = 0
68    endif
69
70  END DO
71!$OMP END DO NOWAIT
72
73
74    CALL  convflu_loc ( hbxu, hbyv, llm, dteta )
75
76
77  !    stockage dans  dh de la convergence horizont. filtree' du  flux
78               ! ....                           ...........
79        ! d'enthalpie potentielle .
80
81
82  CALL filtreg_p( dteta,jjb_u,jje_u,jjb,jje,jjp1, llm, &
83        2, 2, .true., 1)
84
85
86  RETURN
87END SUBROUTINE dteta1_loc
Note: See TracBrowser for help on using the repository browser.