[1987] | 1 | ! |
---|
| 2 | ! $Id: dissip_p.F 2597 2016-07-22 06:44:47Z musat $ |
---|
| 3 | ! |
---|
[630] | 4 | SUBROUTINE dissip_p( vcov,ucov,teta,p, dv,du,dh ) |
---|
| 5 | c |
---|
[1823] | 6 | USE parallel_lmdz |
---|
[630] | 7 | USE write_field_p |
---|
[2597] | 8 | USE comconst_mod, ONLY: dtdiss |
---|
[630] | 9 | IMPLICIT NONE |
---|
| 10 | |
---|
| 11 | |
---|
| 12 | c .. Avec nouveaux operateurs star : gradiv2 , divgrad2, nxgraro2 ... |
---|
| 13 | c ( 10/01/98 ) |
---|
| 14 | |
---|
| 15 | c======================================================================= |
---|
| 16 | c |
---|
| 17 | c Auteur: P. Le Van |
---|
| 18 | c ------- |
---|
| 19 | c |
---|
| 20 | c Objet: |
---|
| 21 | c ------ |
---|
| 22 | c |
---|
| 23 | c Dissipation horizontale |
---|
| 24 | c |
---|
| 25 | c======================================================================= |
---|
| 26 | c----------------------------------------------------------------------- |
---|
| 27 | c Declarations: |
---|
| 28 | c ------------- |
---|
| 29 | |
---|
| 30 | #include "dimensions.h" |
---|
| 31 | #include "paramet.h" |
---|
| 32 | #include "comgeom.h" |
---|
| 33 | #include "comdissnew.h" |
---|
| 34 | #include "comdissipn.h" |
---|
| 35 | |
---|
| 36 | c Arguments: |
---|
| 37 | c ---------- |
---|
| 38 | |
---|
[1987] | 39 | REAL,INTENT(IN) :: vcov(ip1jm,llm) ! covariant meridional wind |
---|
| 40 | REAL,INTENT(IN) :: ucov(ip1jmp1,llm) ! covariant zonal wind |
---|
| 41 | REAL,INTENT(IN) :: teta(ip1jmp1,llm) ! potentail temperature |
---|
| 42 | REAL,INTENT(IN) :: p(ip1jmp1,llmp1) ! pressure |
---|
| 43 | ! tendencies (.../s) on covariant winds and potential temperature |
---|
| 44 | REAL,INTENT(OUT) :: dv(ip1jm,llm) |
---|
| 45 | REAL,INTENT(OUT) :: du(ip1jmp1,llm) |
---|
| 46 | REAL,INTENT(OUT) :: dh(ip1jmp1,llm) |
---|
[630] | 47 | |
---|
| 48 | c Local: |
---|
| 49 | c ------ |
---|
| 50 | |
---|
| 51 | REAL gdx(ip1jmp1,llm),gdy(ip1jm,llm) |
---|
| 52 | REAL grx(ip1jmp1,llm),gry(ip1jm,llm) |
---|
| 53 | REAL te1dt(llm),te2dt(llm),te3dt(llm) |
---|
| 54 | REAL deltapres(ip1jmp1,llm) |
---|
| 55 | |
---|
| 56 | INTEGER l,ij |
---|
| 57 | |
---|
| 58 | REAL SSUM |
---|
| 59 | integer :: ijb,ije |
---|
| 60 | c----------------------------------------------------------------------- |
---|
| 61 | c initialisations: |
---|
| 62 | c ---------------- |
---|
| 63 | |
---|
[764] | 64 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 65 | DO l=1,llm |
---|
| 66 | te1dt(l) = tetaudiv(l) * dtdiss |
---|
| 67 | te2dt(l) = tetaurot(l) * dtdiss |
---|
| 68 | te3dt(l) = tetah(l) * dtdiss |
---|
| 69 | ENDDO |
---|
[764] | 70 | c$OMP END DO NOWAIT |
---|
[630] | 71 | c CALL initial0( ijp1llm, du ) |
---|
| 72 | c CALL initial0( ijmllm , dv ) |
---|
| 73 | c CALL initial0( ijp1llm, dh ) |
---|
| 74 | |
---|
| 75 | ijb=ij_begin |
---|
| 76 | ije=ij_end |
---|
[764] | 77 | |
---|
| 78 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
| 79 | DO l=1,llm |
---|
| 80 | du(ijb:ije,l)=0 |
---|
| 81 | dh(ijb:ije,l)=0 |
---|
| 82 | ENDDO |
---|
| 83 | c$OMP END DO NOWAIT |
---|
[630] | 84 | |
---|
| 85 | if (pole_sud) ije=ij_end-iip1 |
---|
[764] | 86 | |
---|
| 87 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
| 88 | DO l=1,llm |
---|
| 89 | dv(ijb:ije,l)=0 |
---|
| 90 | ENDDO |
---|
| 91 | c$OMP END DO NOWAIT |
---|
[630] | 92 | |
---|
| 93 | c----------------------------------------------------------------------- |
---|
| 94 | c Calcul de la dissipation: |
---|
| 95 | c ------------------------- |
---|
| 96 | |
---|
| 97 | c Calcul de la partie grad ( div ) : |
---|
| 98 | c ------------------------------------- |
---|
| 99 | |
---|
| 100 | |
---|
| 101 | |
---|
| 102 | IF(lstardis) THEN |
---|
| 103 | c IF (.FALSE.) THEN |
---|
| 104 | CALL gradiv2_p( llm,ucov,vcov,nitergdiv,gdx,gdy ) |
---|
| 105 | ELSE |
---|
| 106 | CALL gradiv_p ( llm,ucov,vcov,nitergdiv,gdx,gdy ) |
---|
| 107 | ENDIF |
---|
| 108 | |
---|
| 109 | |
---|
| 110 | ijb=ij_begin |
---|
| 111 | ije=ij_end |
---|
| 112 | if (pole_sud) ije=ij_end-iip1 |
---|
| 113 | |
---|
[764] | 114 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 115 | DO l=1,llm |
---|
| 116 | if (pole_nord) then |
---|
| 117 | DO ij = 1, iip1 |
---|
| 118 | gdx( ij ,l) = 0. |
---|
| 119 | ENDDO |
---|
| 120 | endif |
---|
| 121 | |
---|
| 122 | if (pole_sud) then |
---|
| 123 | DO ij = 1, iip1 |
---|
| 124 | gdx(ij+ip1jm,l) = 0. |
---|
| 125 | ENDDO |
---|
| 126 | endif |
---|
| 127 | |
---|
| 128 | if (pole_nord) ijb=ij_begin+iip1 |
---|
| 129 | DO ij = ijb,ije |
---|
| 130 | du(ij,l) = du(ij,l) - te1dt(l) *gdx(ij,l) |
---|
| 131 | ENDDO |
---|
| 132 | |
---|
| 133 | if (pole_nord) ijb=ij_begin |
---|
| 134 | DO ij = ijb,ije |
---|
| 135 | dv(ij,l) = dv(ij,l) - te1dt(l) *gdy(ij,l) |
---|
| 136 | ENDDO |
---|
| 137 | |
---|
| 138 | ENDDO |
---|
[764] | 139 | c$OMP END DO NOWAIT |
---|
[630] | 140 | c calcul de la partie n X grad ( rot ): |
---|
| 141 | c --------------------------------------- |
---|
| 142 | |
---|
| 143 | IF(lstardis) THEN |
---|
| 144 | c IF (.FALSE.) THEN |
---|
| 145 | CALL nxgraro2_p( llm,ucov, vcov, nitergrot,grx,gry ) |
---|
| 146 | ELSE |
---|
| 147 | CALL nxgrarot_p( llm,ucov, vcov, nitergrot,grx,gry ) |
---|
| 148 | ENDIF |
---|
| 149 | |
---|
| 150 | |
---|
| 151 | |
---|
| 152 | ijb=ij_begin |
---|
| 153 | ije=ij_end |
---|
| 154 | if (pole_sud) ije=ij_end-iip1 |
---|
[764] | 155 | |
---|
| 156 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 157 | DO l=1,llm |
---|
| 158 | |
---|
| 159 | if (pole_nord) then |
---|
| 160 | DO ij = 1, iip1 |
---|
| 161 | grx(ij,l) = 0. |
---|
| 162 | ENDDO |
---|
| 163 | endif |
---|
| 164 | |
---|
| 165 | if (pole_nord) ijb=ij_begin+iip1 |
---|
| 166 | DO ij = ijb,ije |
---|
| 167 | du(ij,l) = du(ij,l) - te2dt(l) * grx(ij,l) |
---|
| 168 | ENDDO |
---|
| 169 | |
---|
| 170 | if (pole_nord) ijb=ij_begin |
---|
| 171 | DO ij = ijb, ije |
---|
| 172 | dv(ij,l) = dv(ij,l) - te2dt(l) * gry(ij,l) |
---|
| 173 | ENDDO |
---|
| 174 | |
---|
| 175 | ENDDO |
---|
[764] | 176 | c$OMP END DO NOWAIT |
---|
[630] | 177 | |
---|
| 178 | c calcul de la partie div ( grad ): |
---|
| 179 | c ----------------------------------- |
---|
| 180 | |
---|
| 181 | |
---|
| 182 | IF(lstardis) THEN |
---|
| 183 | c IF (.FALSE.) THEN |
---|
| 184 | |
---|
| 185 | ijb=ij_begin |
---|
| 186 | ije=ij_end |
---|
[764] | 187 | |
---|
| 188 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 189 | DO l = 1, llm |
---|
| 190 | DO ij = ijb, ije |
---|
| 191 | deltapres(ij,l) = AMAX1( 0., p(ij,l) - p(ij,l+1) ) |
---|
| 192 | ENDDO |
---|
| 193 | ENDDO |
---|
[764] | 194 | c$OMP END DO NOWAIT |
---|
[630] | 195 | CALL divgrad2_p( llm,teta, deltapres ,niterh, gdx ) |
---|
| 196 | ELSE |
---|
| 197 | CALL divgrad_p ( llm,teta, niterh, gdx ) |
---|
| 198 | ENDIF |
---|
| 199 | |
---|
| 200 | c call write_field3d_p('gdx2',reshape(gdx,(/iip1,jmp1,llm/))) |
---|
| 201 | c stop |
---|
| 202 | |
---|
| 203 | ijb=ij_begin |
---|
| 204 | ije=ij_end |
---|
| 205 | |
---|
[764] | 206 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 207 | DO l = 1,llm |
---|
| 208 | DO ij = ijb,ije |
---|
| 209 | dh( ij,l ) = dh( ij,l ) - te3dt(l) * gdx( ij,l ) |
---|
| 210 | ENDDO |
---|
| 211 | ENDDO |
---|
[764] | 212 | c$OMP END DO NOWAIT |
---|
[630] | 213 | |
---|
| 214 | RETURN |
---|
| 215 | END |
---|