1 | SUBROUTINE convflu_loc( xflu,yflu,nbniv,convfl ) |
---|
2 | ! |
---|
3 | ! P. Le Van |
---|
4 | ! |
---|
5 | ! |
---|
6 | ! ******************************************************************* |
---|
7 | ! ... calcule la (convergence horiz. * aire locale)du flux ayant pour |
---|
8 | ! composantes xflu et yflu ,variables extensives . ...... |
---|
9 | ! ******************************************************************* |
---|
10 | ! xflu , yflu et nbniv sont des arguments d'entree pour le s-pg .. |
---|
11 | ! convfl est un argument de sortie pour le s-pg . |
---|
12 | ! |
---|
13 | ! njxflu est le nombre de lignes de latitude de xflu, |
---|
14 | ! ( = jjm ou jjp1 ) |
---|
15 | ! nbniv est le nombre de niveaux vert. de xflu et de yflu . |
---|
16 | ! |
---|
17 | USE comgeom_mod_h |
---|
18 | USE parallel_lmdz |
---|
19 | USE dimensions_mod, ONLY: iim, jjm, llm, ndm |
---|
20 | USE paramet_mod_h |
---|
21 | IMPLICIT NONE |
---|
22 | ! |
---|
23 | |
---|
24 | |
---|
25 | REAL :: xflu,yflu,convfl,convpn,convps |
---|
26 | INTEGER :: l,ij,nbniv |
---|
27 | DIMENSION xflu( ijb_u:ije_u,nbniv ),yflu( ijb_v:ije_v,nbniv ) , & |
---|
28 | convfl( ijb_u:ije_u,nbniv ) |
---|
29 | ! |
---|
30 | INTEGER :: ijb,ije |
---|
31 | EXTERNAL SSUM |
---|
32 | REAL :: SSUM |
---|
33 | ! |
---|
34 | ! |
---|
35 | ! |
---|
36 | |
---|
37 | !$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
38 | DO l = 1,nbniv |
---|
39 | ! |
---|
40 | ijb=ij_begin |
---|
41 | ije=ij_end+iip1 |
---|
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 | convfl(ij+1,l) = xflu(ij,l) - xflu(ij+ 1,l) + & |
---|
48 | yflu(ij +1,l ) - yflu( ij -iim,l ) |
---|
49 | END DO |
---|
50 | ! |
---|
51 | ! |
---|
52 | |
---|
53 | ! .... correction pour convfl( 1,j,l) ...... |
---|
54 | ! .... convfl(1,j,l)= convfl(iip1,j,l) ... |
---|
55 | ! |
---|
56 | !DIR$ IVDEP |
---|
57 | DO ij = ijb,ije,iip1 |
---|
58 | convfl( ij,l ) = convfl( ij + iim,l ) |
---|
59 | END DO |
---|
60 | ! |
---|
61 | ! ...... calcul aux poles ....... |
---|
62 | ! |
---|
63 | IF (pole_nord) THEN |
---|
64 | |
---|
65 | convpn = SSUM( iim, yflu( 1 ,l ), 1 ) |
---|
66 | |
---|
67 | DO ij = 1,iip1 |
---|
68 | convfl(ij,l) = convpn * aire(ij) / apoln |
---|
69 | ENDDO |
---|
70 | |
---|
71 | ENDIF |
---|
72 | |
---|
73 | IF (pole_sud) THEN |
---|
74 | |
---|
75 | convps = - SSUM( iim, yflu( ip1jm-iim,l ), 1 ) |
---|
76 | |
---|
77 | DO ij = 1,iip1 |
---|
78 | convfl(ij+ip1jm,l) = convps * aire(ij+ ip1jm) / apols |
---|
79 | ENDDO |
---|
80 | |
---|
81 | ENDIF |
---|
82 | |
---|
83 | END DO |
---|
84 | !$OMP END DO NOWAIT |
---|
85 | RETURN |
---|
86 | END SUBROUTINE convflu_loc |
---|