[630] | 1 | ! |
---|
[1279] | 2 | ! $Id: calfis_p.F 2604 2016-07-26 15:37:18Z fairhead $ |
---|
[630] | 3 | ! |
---|
| 4 | C |
---|
| 5 | C |
---|
[1146] | 6 | SUBROUTINE calfis_p(lafin, |
---|
[1279] | 7 | $ jD_cur, jH_cur, |
---|
[630] | 8 | $ pucov, |
---|
| 9 | $ pvcov, |
---|
| 10 | $ pteta, |
---|
| 11 | $ pq, |
---|
| 12 | $ pmasse, |
---|
| 13 | $ pps, |
---|
| 14 | $ pp, |
---|
| 15 | $ ppk, |
---|
| 16 | $ pphis, |
---|
| 17 | $ pphi, |
---|
| 18 | $ pducov, |
---|
| 19 | $ pdvcov, |
---|
| 20 | $ pdteta, |
---|
| 21 | $ pdq, |
---|
| 22 | $ flxw, |
---|
| 23 | $ pdufi, |
---|
| 24 | $ pdvfi, |
---|
| 25 | $ pdhfi, |
---|
| 26 | $ pdqfi, |
---|
| 27 | $ pdpsfi) |
---|
[1615] | 28 | #ifdef CPP_PHYS |
---|
| 29 | ! If using physics |
---|
[630] | 30 | USE dimphy |
---|
[2351] | 31 | USE mod_phys_lmdz_mpi_data, mpi_root_xx=>mpi_master |
---|
| 32 | USE mod_phys_lmdz_omp_data, ONLY: klon_omp, klon_omp_begin |
---|
| 33 | USE mod_const_mpi, ONLY: COMM_LMDZ |
---|
[1403] | 34 | USE mod_interface_dyn_phys |
---|
| 35 | USE IOPHY |
---|
| 36 | #endif |
---|
[2239] | 37 | #ifdef CPP_PARA |
---|
[2418] | 38 | USE parallel_lmdz,ONLY:omp_chunk,using_mpi,jjb_u,jje_u,jjb_v,jje_v |
---|
| 39 | $ ,jj_begin_dyn=>jj_begin,jj_end_dyn=>jj_end |
---|
[630] | 40 | USE Write_Field |
---|
| 41 | Use Write_field_p |
---|
| 42 | USE Times |
---|
[2239] | 43 | #endif |
---|
[1987] | 44 | USE infotrac, ONLY: nqtot, niadv, tname |
---|
| 45 | USE control_mod, ONLY: planet_type, nsplit_phys |
---|
[2418] | 46 | #ifdef CPP_PHYS |
---|
| 47 | USE callphysiq_mod, ONLY: call_physiq |
---|
| 48 | #endif |
---|
[2600] | 49 | USE comvert_mod, ONLY: preff, presnivs |
---|
[2597] | 50 | USE comconst_mod, ONLY: cpp, daysec, dtphys, dtvr, kappa, pi |
---|
[1146] | 51 | |
---|
[630] | 52 | IMPLICIT NONE |
---|
| 53 | c======================================================================= |
---|
| 54 | c |
---|
| 55 | c 1. rearrangement des tableaux et transformation |
---|
| 56 | c variables dynamiques > variables physiques |
---|
| 57 | c 2. calcul des termes physiques |
---|
| 58 | c 3. retransformation des tendances physiques en tendances dynamiques |
---|
| 59 | c |
---|
| 60 | c remarques: |
---|
| 61 | c ---------- |
---|
| 62 | c |
---|
| 63 | c - les vents sont donnes dans la physique par leurs composantes |
---|
| 64 | c naturelles. |
---|
| 65 | c - la variable thermodynamique de la physique est une variable |
---|
| 66 | c intensive : T |
---|
| 67 | c pour la dynamique on prend T * ( preff / p(l) ) **kappa |
---|
| 68 | c - les deux seules variables dependant de la geometrie necessaires |
---|
| 69 | c pour la physique sont la latitude pour le rayonnement et |
---|
| 70 | c l'aire de la maille quand on veut integrer une grandeur |
---|
| 71 | c horizontalement. |
---|
| 72 | c - les points de la physique sont les points scalaires de la |
---|
| 73 | c la dynamique; numerotation: |
---|
| 74 | c 1 pour le pole nord |
---|
| 75 | c (jjm-1)*iim pour l'interieur du domaine |
---|
| 76 | c ngridmx pour le pole sud |
---|
| 77 | c ---> ngridmx=2+(jjm-1)*iim |
---|
| 78 | c |
---|
| 79 | c Input : |
---|
| 80 | c ------- |
---|
| 81 | c ecritphy frequence d'ecriture (en jours)de histphy |
---|
| 82 | c pucov covariant zonal velocity |
---|
| 83 | c pvcov covariant meridional velocity |
---|
| 84 | c pteta potential temperature |
---|
| 85 | c pps surface pressure |
---|
| 86 | c pmasse masse d'air dans chaque maille |
---|
| 87 | c pts surface temperature (K) |
---|
| 88 | c callrad clef d'appel au rayonnement |
---|
| 89 | c |
---|
| 90 | c Output : |
---|
| 91 | c -------- |
---|
| 92 | c pdufi tendency for the natural zonal velocity (ms-1) |
---|
| 93 | c pdvfi tendency for the natural meridional velocity |
---|
| 94 | c pdhfi tendency for the potential temperature |
---|
| 95 | c pdtsfi tendency for the surface temperature |
---|
| 96 | c |
---|
| 97 | c pdtrad radiative tendencies \ both input |
---|
| 98 | c pfluxrad radiative fluxes / and output |
---|
| 99 | c |
---|
| 100 | c======================================================================= |
---|
| 101 | c |
---|
| 102 | c----------------------------------------------------------------------- |
---|
| 103 | c |
---|
| 104 | c 0. Declarations : |
---|
| 105 | c ------------------ |
---|
| 106 | |
---|
| 107 | #include "dimensions.h" |
---|
| 108 | #include "paramet.h" |
---|
| 109 | |
---|
[1146] | 110 | INTEGER ngridmx |
---|
[630] | 111 | PARAMETER( ngridmx = 2+(jjm-1)*iim - 1/jjm ) |
---|
| 112 | |
---|
| 113 | #include "comgeom2.h" |
---|
[1403] | 114 | #include "iniprint.h" |
---|
[1000] | 115 | #ifdef CPP_MPI |
---|
[630] | 116 | include 'mpif.h' |
---|
[1000] | 117 | #endif |
---|
[630] | 118 | c Arguments : |
---|
| 119 | c ----------- |
---|
[1987] | 120 | LOGICAL,INTENT(IN) :: lafin ! .true. for the very last call to physics |
---|
| 121 | REAL,INTENT(IN) :: jD_cur, jH_cur |
---|
| 122 | REAL,INTENT(IN) :: pvcov(iip1,jjm,llm) ! covariant meridional velocity |
---|
| 123 | REAL,INTENT(IN) :: pucov(iip1,jjp1,llm) ! covariant zonal velocity |
---|
| 124 | REAL,INTENT(IN) :: pteta(iip1,jjp1,llm) ! potential temperature |
---|
| 125 | REAL,INTENT(IN) :: pmasse(iip1,jjp1,llm) ! mass in each cell ! not used |
---|
| 126 | REAL,INTENT(IN) :: pq(iip1,jjp1,llm,nqtot) ! tracers |
---|
| 127 | REAL,INTENT(IN) :: pphis(iip1,jjp1) ! surface geopotential |
---|
| 128 | REAL,INTENT(IN) :: pphi(iip1,jjp1,llm) ! geopotential |
---|
[630] | 129 | |
---|
[1987] | 130 | REAL,INTENT(IN) :: pdvcov(iip1,jjm,llm) ! dynamical tendency on vcov ! not used |
---|
| 131 | REAL,INTENT(IN) :: pducov(iip1,jjp1,llm) ! dynamical tendency on ucov |
---|
| 132 | REAL,INTENT(IN) :: pdteta(iip1,jjp1,llm) ! dynamical tendency on teta |
---|
| 133 | ! NB: pdteta is used only to compute pcvgt which is in fact not used... |
---|
| 134 | REAL,INTENT(IN) :: pdq(iip1,jjp1,llm,nqtot) ! dynamical tendency on tracers |
---|
| 135 | ! NB: pdq is only used to compute pcvgq which is in fact not used... |
---|
[630] | 136 | |
---|
[1987] | 137 | REAL,INTENT(IN) :: pps(iip1,jjp1) ! surface pressure (Pa) |
---|
| 138 | REAL,INTENT(IN) :: pp(iip1,jjp1,llmp1) ! pressure at mesh interfaces (Pa) |
---|
| 139 | REAL,INTENT(IN) :: ppk(iip1,jjp1,llm) ! Exner at mid-layer |
---|
[2418] | 140 | REAL,INTENT(IN) :: flxw(iip1,jjp1,llm) ! Vertical mass flux on lower mesh interfaces (kg/s) (on llm because flxw(:,:,llm+1)=0) |
---|
[1987] | 141 | |
---|
| 142 | ! tendencies (in */s) from the physics |
---|
| 143 | REAL,INTENT(OUT) :: pdvfi(iip1,jjm,llm) ! tendency on covariant meridional wind |
---|
| 144 | REAL,INTENT(OUT) :: pdufi(iip1,jjp1,llm) ! tendency on covariant zonal wind |
---|
| 145 | REAL,INTENT(OUT) :: pdhfi(iip1,jjp1,llm) ! tendency on potential temperature (K/s) |
---|
| 146 | REAL,INTENT(OUT) :: pdqfi(iip1,jjp1,llm,nqtot) ! tendency on tracers |
---|
| 147 | REAL,INTENT(OUT) :: pdpsfi(iip1,jjp1) ! tendency on surface pressure (Pa/s) |
---|
| 148 | |
---|
[2239] | 149 | #ifdef CPP_PARA |
---|
[1617] | 150 | #ifdef CPP_PHYS |
---|
| 151 | ! Ehouarn: for now calfis_p needs some informations from physics to compile |
---|
[630] | 152 | c Local variables : |
---|
| 153 | c ----------------- |
---|
| 154 | |
---|
| 155 | INTEGER i,j,l,ig0,ig,iq,iiq |
---|
[764] | 156 | REAL,ALLOCATABLE,SAVE :: zpsrf(:) |
---|
| 157 | REAL,ALLOCATABLE,SAVE :: zplev(:,:),zplay(:,:) |
---|
| 158 | REAL,ALLOCATABLE,SAVE :: zphi(:,:),zphis(:) |
---|
[630] | 159 | c |
---|
[2597] | 160 | ! REAL zrot(iip1,jjb_v:jje_v,llm) ! AdlC May 2014 |
---|
| 161 | REAL :: zrot(iip1,jjm,llm) |
---|
[2418] | 162 | REAL,ALLOCATABLE,SAVE :: zufi(:,:), zvfi(:,:), zrfi(:,:) |
---|
[764] | 163 | REAL,ALLOCATABLE,SAVE :: ztfi(:,:),zqfi(:,:,:) |
---|
[2604] | 164 | REAL,ALLOCATABLE,SAVE :: zpk(:,:) |
---|
[630] | 165 | c |
---|
[764] | 166 | REAL,ALLOCATABLE,SAVE :: pcvgu(:,:), pcvgv(:,:) |
---|
| 167 | REAL,ALLOCATABLE,SAVE :: pcvgt(:,:), pcvgq(:,:,:) |
---|
[630] | 168 | c |
---|
[764] | 169 | REAL,ALLOCATABLE,SAVE :: zdufi(:,:),zdvfi(:,:) |
---|
| 170 | REAL,ALLOCATABLE,SAVE :: zdtfi(:,:),zdqfi(:,:,:) |
---|
| 171 | REAL,ALLOCATABLE,SAVE :: zdpsrf(:) |
---|
[985] | 172 | REAL,SAVE,ALLOCATABLE :: flxwfi(:,:) ! Flux de masse verticale sur la grille physiq |
---|
| 173 | |
---|
[630] | 174 | c |
---|
[764] | 175 | REAL,ALLOCATABLE,SAVE :: zplev_omp(:,:) |
---|
| 176 | REAL,ALLOCATABLE,SAVE :: zplay_omp(:,:) |
---|
[2604] | 177 | REAL,ALLOCATABLE,SAVE :: zpk_omp(:,:) |
---|
[764] | 178 | REAL,ALLOCATABLE,SAVE :: zphi_omp(:,:) |
---|
| 179 | REAL,ALLOCATABLE,SAVE :: zphis_omp(:) |
---|
| 180 | REAL,ALLOCATABLE,SAVE :: presnivs_omp(:) |
---|
| 181 | REAL,ALLOCATABLE,SAVE :: zufi_omp(:,:) |
---|
| 182 | REAL,ALLOCATABLE,SAVE :: zvfi_omp(:,:) |
---|
[2418] | 183 | REAL,ALLOCATABLE,SAVE :: zrfi_omp(:,:) |
---|
[764] | 184 | REAL,ALLOCATABLE,SAVE :: ztfi_omp(:,:) |
---|
| 185 | REAL,ALLOCATABLE,SAVE :: zqfi_omp(:,:,:) |
---|
| 186 | REAL,ALLOCATABLE,SAVE :: zdufi_omp(:,:) |
---|
| 187 | REAL,ALLOCATABLE,SAVE :: zdvfi_omp(:,:) |
---|
| 188 | REAL,ALLOCATABLE,SAVE :: zdtfi_omp(:,:) |
---|
| 189 | REAL,ALLOCATABLE,SAVE :: zdqfi_omp(:,:,:) |
---|
| 190 | REAL,ALLOCATABLE,SAVE :: zdpsrf_omp(:) |
---|
[985] | 191 | REAL,SAVE,ALLOCATABLE :: flxwfi_omp(:,:) ! Flux de masse verticale sur la grille physiq |
---|
[764] | 192 | |
---|
[1403] | 193 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 194 | ! Introduction du splitting (FH) |
---|
| 195 | ! Question pour Yann : |
---|
| 196 | ! J'ai été surpris au début que les tableaux zufi_omp, zdufi_omp n'co soitent |
---|
| 197 | ! en SAVE. Je crois comprendre que c'est parce que tu voulais qu'il |
---|
| 198 | ! soit allocatable (plutot par exemple que de passer une dimension |
---|
| 199 | ! dépendant du process en argument des routines) et que, du coup, |
---|
| 200 | ! le SAVE évite d'avoir à refaire l'allocation à chaque appel. |
---|
| 201 | ! Tu confirmes ? |
---|
| 202 | ! J'ai suivi le même principe pour les zdufic_omp |
---|
| 203 | ! Mais c'est surement bien que tu controles. |
---|
| 204 | ! |
---|
| 205 | |
---|
| 206 | REAL,ALLOCATABLE,SAVE :: zdufic_omp(:,:) |
---|
| 207 | REAL,ALLOCATABLE,SAVE :: zdvfic_omp(:,:) |
---|
| 208 | REAL,ALLOCATABLE,SAVE :: zdtfic_omp(:,:) |
---|
| 209 | REAL,ALLOCATABLE,SAVE :: zdqfic_omp(:,:,:) |
---|
| 210 | REAL jH_cur_split,zdt_split |
---|
| 211 | LOGICAL debut_split,lafin_split |
---|
| 212 | INTEGER isplit |
---|
| 213 | !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
---|
| 214 | |
---|
[2604] | 215 | c$OMP THREADPRIVATE(zplev_omp,zplay_omp,zpk_omp,zphi_omp,zphis_omp, |
---|
[764] | 216 | c$OMP+ presnivs_omp,zufi_omp,zvfi_omp,ztfi_omp, |
---|
[2418] | 217 | c$OMP+ zrfi_omp,zqfi_omp,zdufi_omp,zdvfi_omp, |
---|
[1403] | 218 | c$OMP+ zdtfi_omp,zdqfi_omp,zdpsrf_omp,flxwfi_omp, |
---|
| 219 | c$OMP+ zdufic_omp,zdvfic_omp,zdtfic_omp,zdqfic_omp) |
---|
[764] | 220 | |
---|
| 221 | LOGICAL,SAVE :: first_omp=.true. |
---|
| 222 | c$OMP THREADPRIVATE(first_omp) |
---|
| 223 | |
---|
[630] | 224 | REAL zsin(iim),zcos(iim),z1(iim) |
---|
| 225 | REAL zsinbis(iim),zcosbis(iim),z1bis(iim) |
---|
| 226 | REAL unskap, pksurcp |
---|
[764] | 227 | c |
---|
[630] | 228 | REAL SSUM |
---|
| 229 | |
---|
[1987] | 230 | LOGICAL,SAVE :: firstcal=.true., debut=.true. |
---|
[764] | 231 | c$OMP THREADPRIVATE(firstcal,debut) |
---|
[630] | 232 | |
---|
[764] | 233 | REAL,SAVE,dimension(1:iim,1:llm):: du_send,du_recv,dv_send,dv_recv |
---|
[630] | 234 | INTEGER :: ierr |
---|
[1000] | 235 | #ifdef CPP_MPI |
---|
[630] | 236 | INTEGER,dimension(MPI_STATUS_SIZE,4) :: Status |
---|
[1000] | 237 | #else |
---|
| 238 | INTEGER,dimension(1,4) :: Status |
---|
| 239 | #endif |
---|
[630] | 240 | INTEGER, dimension(4) :: Req |
---|
[764] | 241 | REAL,ALLOCATABLE,SAVE:: zdufi2(:,:),zdvfi2(:,:) |
---|
| 242 | integer :: k,kstart,kend |
---|
| 243 | INTEGER :: offset |
---|
[2418] | 244 | INTEGER :: jjb,jje |
---|
[1654] | 245 | |
---|
[630] | 246 | c |
---|
| 247 | c----------------------------------------------------------------------- |
---|
| 248 | c |
---|
| 249 | c 1. Initialisations : |
---|
| 250 | c -------------------- |
---|
| 251 | c |
---|
| 252 | |
---|
[764] | 253 | klon=klon_mpi |
---|
| 254 | |
---|
[1279] | 255 | c |
---|
| 256 | IF ( firstcal ) THEN |
---|
| 257 | debut = .TRUE. |
---|
| 258 | IF (ngridmx.NE.2+(jjm-1)*iim) THEN |
---|
[1403] | 259 | write(lunout,*) 'STOP dans calfis' |
---|
| 260 | write(lunout,*) |
---|
| 261 | & 'La dimension ngridmx doit etre egale a 2 + (jjm-1)*iim' |
---|
| 262 | write(lunout,*) ' ngridmx jjm iim ' |
---|
| 263 | write(lunout,*) ngridmx,jjm,iim |
---|
[630] | 264 | STOP |
---|
[1279] | 265 | ENDIF |
---|
[764] | 266 | c$OMP MASTER |
---|
| 267 | ALLOCATE(zpsrf(klon)) |
---|
| 268 | ALLOCATE(zplev(klon,llm+1),zplay(klon,llm)) |
---|
| 269 | ALLOCATE(zphi(klon,llm),zphis(klon)) |
---|
[2418] | 270 | ALLOCATE(zufi(klon,llm), zvfi(klon,llm),zrfi(klon,llm)) |
---|
[1146] | 271 | ALLOCATE(ztfi(klon,llm),zqfi(klon,llm,nqtot)) |
---|
[764] | 272 | ALLOCATE(pcvgu(klon,llm), pcvgv(klon,llm)) |
---|
| 273 | ALLOCATE(pcvgt(klon,llm), pcvgq(klon,llm,2)) |
---|
| 274 | ALLOCATE(zdufi(klon,llm),zdvfi(klon,llm)) |
---|
[1146] | 275 | ALLOCATE(zdtfi(klon,llm),zdqfi(klon,llm,nqtot)) |
---|
[764] | 276 | ALLOCATE(zdpsrf(klon)) |
---|
| 277 | ALLOCATE(zdufi2(klon+iim,llm),zdvfi2(klon+iim,llm)) |
---|
[985] | 278 | ALLOCATE(flxwfi(klon,llm)) |
---|
[2604] | 279 | ALLOCATE(zpk(klon,llm)) |
---|
[764] | 280 | c$OMP END MASTER |
---|
[2600] | 281 | c$OMP BARRIER |
---|
[630] | 282 | ELSE |
---|
| 283 | debut = .FALSE. |
---|
| 284 | ENDIF |
---|
| 285 | |
---|
| 286 | c |
---|
| 287 | c |
---|
| 288 | c----------------------------------------------------------------------- |
---|
| 289 | c 40. transformation des variables dynamiques en variables physiques: |
---|
| 290 | c --------------------------------------------------------------- |
---|
| 291 | |
---|
| 292 | c 41. pressions au sol (en Pascals) |
---|
| 293 | c ---------------------------------- |
---|
| 294 | |
---|
[764] | 295 | c$OMP MASTER |
---|
[630] | 296 | call start_timer(timer_physic) |
---|
[764] | 297 | c$OMP END MASTER |
---|
| 298 | |
---|
| 299 | c$OMP MASTER |
---|
[1279] | 300 | !CDIR ON_ADB(index_i) |
---|
| 301 | !CDIR ON_ADB(index_j) |
---|
[630] | 302 | do ig0=1,klon |
---|
[774] | 303 | i=index_i(ig0) |
---|
| 304 | j=index_j(ig0) |
---|
[630] | 305 | zpsrf(ig0)=pps(i,j) |
---|
| 306 | enddo |
---|
[764] | 307 | c$OMP END MASTER |
---|
[630] | 308 | |
---|
| 309 | |
---|
| 310 | c 42. pression intercouches : |
---|
| 311 | c |
---|
| 312 | c ----------------------------------------------------------------- |
---|
| 313 | c .... zplev definis aux (llm +1) interfaces des couches .... |
---|
| 314 | c .... zplay definis aux ( llm ) milieux des couches .... |
---|
| 315 | c ----------------------------------------------------------------- |
---|
| 316 | |
---|
| 317 | c ... Exner = cp * ( p(l) / preff ) ** kappa .... |
---|
| 318 | c |
---|
| 319 | unskap = 1./ kappa |
---|
| 320 | c |
---|
[961] | 321 | c print *,omp_rank,'klon--->',klon |
---|
[764] | 322 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 323 | DO l = 1, llmp1 |
---|
[1279] | 324 | !CDIR ON_ADB(index_i) |
---|
| 325 | !CDIR ON_ADB(index_j) |
---|
[630] | 326 | do ig0=1,klon |
---|
[774] | 327 | i=index_i(ig0) |
---|
| 328 | j=index_j(ig0) |
---|
[630] | 329 | zplev( ig0,l ) = pp(i,j,l) |
---|
| 330 | enddo |
---|
| 331 | ENDDO |
---|
[764] | 332 | c$OMP END DO NOWAIT |
---|
[2604] | 333 | |
---|
| 334 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
| 335 | DO l=1,llm |
---|
| 336 | do ig0=1,klon |
---|
| 337 | i=index_i(ig0) |
---|
| 338 | j=index_j(ig0) |
---|
| 339 | zpk(ig0,l)=ppk(i,j,l) |
---|
| 340 | enddo |
---|
| 341 | ENDDO |
---|
| 342 | c$OMP END DO NOWAIT |
---|
| 343 | |
---|
[630] | 344 | c |
---|
| 345 | c |
---|
| 346 | |
---|
| 347 | c 43. temperature naturelle (en K) et pressions milieux couches . |
---|
| 348 | c --------------------------------------------------------------- |
---|
[764] | 349 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 350 | DO l=1,llm |
---|
[1279] | 351 | !CDIR ON_ADB(index_i) |
---|
| 352 | !CDIR ON_ADB(index_j) |
---|
[630] | 353 | do ig0=1,klon |
---|
[774] | 354 | i=index_i(ig0) |
---|
| 355 | j=index_j(ig0) |
---|
[630] | 356 | pksurcp = ppk(i,j,l) / cpp |
---|
| 357 | zplay(ig0,l) = preff * pksurcp ** unskap |
---|
| 358 | ztfi(ig0,l) = pteta(i,j,l) * pksurcp |
---|
| 359 | enddo |
---|
| 360 | |
---|
| 361 | ENDDO |
---|
[764] | 362 | c$OMP END DO NOWAIT |
---|
[630] | 363 | |
---|
| 364 | c 43.bis traceurs |
---|
| 365 | c --------------- |
---|
| 366 | c |
---|
| 367 | |
---|
[1146] | 368 | DO iq=1,nqtot |
---|
[630] | 369 | iiq=niadv(iq) |
---|
[764] | 370 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 371 | DO l=1,llm |
---|
[1279] | 372 | !CDIR ON_ADB(index_i) |
---|
| 373 | !CDIR ON_ADB(index_j) |
---|
[630] | 374 | do ig0=1,klon |
---|
[774] | 375 | i=index_i(ig0) |
---|
| 376 | j=index_j(ig0) |
---|
[630] | 377 | zqfi(ig0,l,iq) = pq(i,j,l,iiq) |
---|
| 378 | enddo |
---|
| 379 | ENDDO |
---|
[2600] | 380 | c$OMP END DO NOWAIT |
---|
[630] | 381 | ENDDO |
---|
| 382 | |
---|
| 383 | |
---|
| 384 | c Geopotentiel calcule par rapport a la surface locale: |
---|
| 385 | c ----------------------------------------------------- |
---|
| 386 | |
---|
| 387 | CALL gr_dyn_fi_p(llm,iip1,jjp1,klon,pphi,zphi) |
---|
[764] | 388 | |
---|
[630] | 389 | CALL gr_dyn_fi_p(1,iip1,jjp1,klon,pphis,zphis) |
---|
[1146] | 390 | |
---|
[764] | 391 | c$OMP BARRIER |
---|
[630] | 392 | |
---|
[764] | 393 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 394 | DO l=1,llm |
---|
[2600] | 395 | DO ig=1,klon |
---|
| 396 | zphi(ig,l)=zphi(ig,l)-zphis(ig) |
---|
| 397 | ENDDO |
---|
[630] | 398 | ENDDO |
---|
[960] | 399 | c$OMP END DO NOWAIT |
---|
| 400 | |
---|
[630] | 401 | |
---|
| 402 | c |
---|
| 403 | c 45. champ u: |
---|
| 404 | c ------------ |
---|
| 405 | |
---|
| 406 | kstart=1 |
---|
| 407 | kend=klon |
---|
| 408 | |
---|
[2429] | 409 | if (is_north_pole_dyn) kstart=2 |
---|
| 410 | if (is_south_pole_dyn) kend=klon-1 |
---|
[630] | 411 | |
---|
[764] | 412 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 413 | DO l=1,llm |
---|
[1279] | 414 | !CDIR ON_ADB(index_i) |
---|
| 415 | !CDIR ON_ADB(index_j) |
---|
| 416 | !CDIR SPARSE |
---|
[630] | 417 | do ig0=kstart,kend |
---|
[774] | 418 | i=index_i(ig0) |
---|
| 419 | j=index_j(ig0) |
---|
[630] | 420 | if (i==1) then |
---|
| 421 | zufi(ig0,l)= 0.5 *( pucov(iim,j,l)/cu(iim,j) |
---|
| 422 | $ + pucov(1,j,l)/cu(1,j) ) |
---|
| 423 | else |
---|
| 424 | zufi(ig0,l)= 0.5*( pucov(i-1,j,l)/cu(i-1,j) |
---|
| 425 | $ + pucov(i,j,l)/cu(i,j) ) |
---|
| 426 | endif |
---|
| 427 | enddo |
---|
| 428 | ENDDO |
---|
[764] | 429 | c$OMP END DO NOWAIT |
---|
[1279] | 430 | |
---|
[2418] | 431 | c |
---|
| 432 | C Alvaro de la Camara (May 2014) |
---|
| 433 | C 46.1 Calcul de la vorticite et passage sur la grille physique |
---|
| 434 | C -------------------------------------------------------------- |
---|
| 435 | |
---|
| 436 | jjb=jj_begin_dyn-1 |
---|
| 437 | jje=jj_end_dyn+1 |
---|
[2429] | 438 | if (is_north_pole_dyn) jjb=1 |
---|
| 439 | if (is_south_pole_dyn) jje=jjm |
---|
[2418] | 440 | |
---|
| 441 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
| 442 | |
---|
| 443 | DO l=1,llm |
---|
| 444 | do i=1,iim |
---|
| 445 | do j=jjb,jje |
---|
| 446 | zrot(i,j,l) = (pvcov(i+1,j,l) - pvcov(i,j,l) |
---|
| 447 | $ + pucov(i,j+1,l) - pucov(i,j,l)) |
---|
| 448 | $ / (cu(i,j)+cu(i,j+1)) |
---|
| 449 | $ / (cv(i+1,j)+cv(i,j)) *4 |
---|
| 450 | enddo |
---|
| 451 | enddo |
---|
| 452 | ENDDO |
---|
| 453 | |
---|
| 454 | |
---|
| 455 | c 46.2champ v: |
---|
[630] | 456 | c ----------- |
---|
[1279] | 457 | |
---|
[764] | 458 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 459 | DO l=1,llm |
---|
[1279] | 460 | !CDIR ON_ADB(index_i) |
---|
| 461 | !CDIR ON_ADB(index_j) |
---|
[630] | 462 | DO ig0=kstart,kend |
---|
[774] | 463 | i=index_i(ig0) |
---|
| 464 | j=index_j(ig0) |
---|
[630] | 465 | zvfi(ig0,l)= 0.5 *( pvcov(i,j-1,l)/cv(i,j-1) |
---|
| 466 | $ + pvcov(i,j,l)/cv(i,j) ) |
---|
| 467 | |
---|
[2418] | 468 | if (j==1 .OR. j==jjp1) then ! AdlC MAY 2014 |
---|
| 469 | zrfi(ig0,l) = 0 ! AdlC MAY 2014 |
---|
| 470 | else |
---|
| 471 | if(i==1)then |
---|
| 472 | zrfi(ig0,l)= 0.25 *(zrot(iim,j-1,l)+zrot(iim,j,l) |
---|
| 473 | $ +zrot(1,j-1,l)+zrot(1,j,l)) ! AdlC MAY 2014 |
---|
| 474 | else |
---|
| 475 | zrfi(ig0,l)= 0.25 *(zrot(i-1,j-1,l)+zrot(i-1,j,l) |
---|
| 476 | $ +zrot(i,j-1,l)+zrot(i,j,l)) ! AdlC MAY 2014 |
---|
| 477 | endif |
---|
| 478 | endif |
---|
| 479 | |
---|
| 480 | |
---|
[630] | 481 | ENDDO |
---|
| 482 | ENDDO |
---|
[764] | 483 | c$OMP END DO NOWAIT |
---|
[630] | 484 | |
---|
| 485 | c 47. champs de vents aux pole nord |
---|
| 486 | c ------------------------------ |
---|
| 487 | c U = 1 / pi * integrale [ v * cos(long) * d long ] |
---|
| 488 | c V = 1 / pi * integrale [ v * sin(long) * d long ] |
---|
| 489 | |
---|
[2429] | 490 | if (is_north_pole_dyn) then |
---|
[764] | 491 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 492 | DO l=1,llm |
---|
| 493 | |
---|
| 494 | z1(1) =(rlonu(1)-rlonu(iim)+2.*pi)*pvcov(1,1,l)/cv(1,1) |
---|
| 495 | DO i=2,iim |
---|
| 496 | z1(i) =(rlonu(i)-rlonu(i-1))*pvcov(i,1,l)/cv(i,1) |
---|
| 497 | ENDDO |
---|
| 498 | |
---|
| 499 | DO i=1,iim |
---|
| 500 | zcos(i) = COS(rlonv(i))*z1(i) |
---|
| 501 | zsin(i) = SIN(rlonv(i))*z1(i) |
---|
| 502 | ENDDO |
---|
| 503 | |
---|
| 504 | zufi(1,l) = SSUM(iim,zcos,1)/pi |
---|
| 505 | zvfi(1,l) = SSUM(iim,zsin,1)/pi |
---|
[2418] | 506 | zrfi(1,l) = 0. |
---|
[630] | 507 | |
---|
| 508 | ENDDO |
---|
[764] | 509 | c$OMP END DO NOWAIT |
---|
[630] | 510 | endif |
---|
| 511 | |
---|
| 512 | |
---|
| 513 | c 48. champs de vents aux pole sud: |
---|
| 514 | c --------------------------------- |
---|
| 515 | c U = 1 / pi * integrale [ v * cos(long) * d long ] |
---|
| 516 | c V = 1 / pi * integrale [ v * sin(long) * d long ] |
---|
| 517 | |
---|
[2429] | 518 | if (is_south_pole_dyn) then |
---|
[764] | 519 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 520 | DO l=1,llm |
---|
| 521 | |
---|
| 522 | z1(1) =(rlonu(1)-rlonu(iim)+2.*pi)*pvcov(1,jjm,l)/cv(1,jjm) |
---|
| 523 | DO i=2,iim |
---|
[1279] | 524 | z1(i) =(rlonu(i)-rlonu(i-1))*pvcov(i,jjm,l)/cv(i,jjm) |
---|
[2600] | 525 | ENDDO |
---|
[630] | 526 | |
---|
| 527 | DO i=1,iim |
---|
| 528 | zcos(i) = COS(rlonv(i))*z1(i) |
---|
| 529 | zsin(i) = SIN(rlonv(i))*z1(i) |
---|
[2600] | 530 | ENDDO |
---|
[630] | 531 | |
---|
| 532 | zufi(klon,l) = SSUM(iim,zcos,1)/pi |
---|
| 533 | zvfi(klon,l) = SSUM(iim,zsin,1)/pi |
---|
[2418] | 534 | zrfi(klon,l) = 0. |
---|
[630] | 535 | ENDDO |
---|
[764] | 536 | c$OMP END DO NOWAIT |
---|
[630] | 537 | endif |
---|
| 538 | |
---|
[960] | 539 | c On change de grille, dynamique vers physiq, pour le flux de masse verticale |
---|
[630] | 540 | CALL gr_dyn_fi_p(llm,iip1,jjp1,klon,flxw,flxwfi) |
---|
| 541 | |
---|
| 542 | c----------------------------------------------------------------------- |
---|
| 543 | c Appel de la physique: |
---|
| 544 | c --------------------- |
---|
| 545 | |
---|
| 546 | |
---|
[764] | 547 | c$OMP BARRIER |
---|
| 548 | if (first_omp) then |
---|
[774] | 549 | klon=klon_omp |
---|
[764] | 550 | |
---|
| 551 | allocate(zplev_omp(klon,llm+1)) |
---|
| 552 | allocate(zplay_omp(klon,llm)) |
---|
[2604] | 553 | allocate(zpk_omp(klon,llm)) |
---|
[764] | 554 | allocate(zphi_omp(klon,llm)) |
---|
| 555 | allocate(zphis_omp(klon)) |
---|
| 556 | allocate(presnivs_omp(llm)) |
---|
| 557 | allocate(zufi_omp(klon,llm)) |
---|
| 558 | allocate(zvfi_omp(klon,llm)) |
---|
[2418] | 559 | allocate(zrfi_omp(klon,llm)) ! LG Ari 2014 |
---|
[764] | 560 | allocate(ztfi_omp(klon,llm)) |
---|
[1146] | 561 | allocate(zqfi_omp(klon,llm,nqtot)) |
---|
[764] | 562 | allocate(zdufi_omp(klon,llm)) |
---|
| 563 | allocate(zdvfi_omp(klon,llm)) |
---|
| 564 | allocate(zdtfi_omp(klon,llm)) |
---|
[1146] | 565 | allocate(zdqfi_omp(klon,llm,nqtot)) |
---|
[1403] | 566 | allocate(zdufic_omp(klon,llm)) |
---|
| 567 | allocate(zdvfic_omp(klon,llm)) |
---|
| 568 | allocate(zdtfic_omp(klon,llm)) |
---|
| 569 | allocate(zdqfic_omp(klon,llm,nqtot)) |
---|
[764] | 570 | allocate(zdpsrf_omp(klon)) |
---|
[985] | 571 | allocate(flxwfi_omp(klon,llm)) |
---|
[2600] | 572 | first_omp=.false. |
---|
[764] | 573 | endif |
---|
| 574 | |
---|
[2600] | 575 | |
---|
[774] | 576 | klon=klon_omp |
---|
| 577 | offset=klon_omp_begin-1 |
---|
[764] | 578 | |
---|
| 579 | do l=1,llm+1 |
---|
| 580 | do i=1,klon |
---|
| 581 | zplev_omp(i,l)=zplev(offset+i,l) |
---|
[2600] | 582 | enddo |
---|
[764] | 583 | enddo |
---|
[2600] | 584 | |
---|
[764] | 585 | do l=1,llm |
---|
| 586 | do i=1,klon |
---|
[2600] | 587 | zplay_omp(i,l)=zplay(offset+i,l) |
---|
| 588 | enddo |
---|
[764] | 589 | enddo |
---|
[2600] | 590 | |
---|
[2604] | 591 | do l=1,llm |
---|
| 592 | do i=1,klon |
---|
| 593 | zpk_omp(i,l)=zpk(offset+i,l) |
---|
| 594 | enddo |
---|
| 595 | enddo |
---|
| 596 | |
---|
[764] | 597 | do l=1,llm |
---|
| 598 | do i=1,klon |
---|
[2600] | 599 | zphi_omp(i,l)=zphi(offset+i,l) |
---|
| 600 | enddo |
---|
[764] | 601 | enddo |
---|
[2600] | 602 | |
---|
[764] | 603 | do i=1,klon |
---|
[2600] | 604 | zphis_omp(i)=zphis(offset+i) |
---|
[764] | 605 | enddo |
---|
| 606 | |
---|
[2600] | 607 | |
---|
[764] | 608 | do l=1,llm |
---|
| 609 | presnivs_omp(l)=presnivs(l) |
---|
| 610 | enddo |
---|
[2600] | 611 | |
---|
[764] | 612 | do l=1,llm |
---|
| 613 | do i=1,klon |
---|
[2600] | 614 | zufi_omp(i,l)=zufi(offset+i,l) |
---|
| 615 | enddo |
---|
[764] | 616 | enddo |
---|
[2600] | 617 | |
---|
[764] | 618 | do l=1,llm |
---|
| 619 | do i=1,klon |
---|
[2600] | 620 | zvfi_omp(i,l)=zvfi(offset+i,l) |
---|
| 621 | enddo |
---|
[764] | 622 | enddo |
---|
[2600] | 623 | |
---|
[764] | 624 | do l=1,llm |
---|
| 625 | do i=1,klon |
---|
[2600] | 626 | zrfi_omp(i,l)=zrfi(offset+i,l) |
---|
| 627 | enddo |
---|
[2418] | 628 | enddo |
---|
[2600] | 629 | |
---|
| 630 | |
---|
[2418] | 631 | do l=1,llm |
---|
| 632 | do i=1,klon |
---|
[2600] | 633 | ztfi_omp(i,l)=ztfi(offset+i,l) |
---|
| 634 | enddo |
---|
[764] | 635 | enddo |
---|
[2600] | 636 | |
---|
[1146] | 637 | do iq=1,nqtot |
---|
[764] | 638 | do l=1,llm |
---|
| 639 | do i=1,klon |
---|
| 640 | zqfi_omp(i,l,iq)=zqfi(offset+i,l,iq) |
---|
[2600] | 641 | enddo |
---|
| 642 | enddo |
---|
[764] | 643 | enddo |
---|
[2600] | 644 | |
---|
[764] | 645 | do l=1,llm |
---|
| 646 | do i=1,klon |
---|
[2600] | 647 | zdufi_omp(i,l)=zdufi(offset+i,l) |
---|
| 648 | enddo |
---|
[764] | 649 | enddo |
---|
[2600] | 650 | |
---|
[764] | 651 | do l=1,llm |
---|
| 652 | do i=1,klon |
---|
[2600] | 653 | zdvfi_omp(i,l)=zdvfi(offset+i,l) |
---|
| 654 | enddo |
---|
[764] | 655 | enddo |
---|
[2600] | 656 | |
---|
[764] | 657 | do l=1,llm |
---|
| 658 | do i=1,klon |
---|
| 659 | zdtfi_omp(i,l)=zdtfi(offset+i,l) |
---|
[2600] | 660 | enddo |
---|
[764] | 661 | enddo |
---|
[2600] | 662 | |
---|
[1146] | 663 | do iq=1,nqtot |
---|
[764] | 664 | do l=1,llm |
---|
| 665 | do i=1,klon |
---|
[2600] | 666 | zdqfi_omp(i,l,iq)=zdqfi(offset+i,l,iq) |
---|
| 667 | enddo |
---|
[764] | 668 | enddo |
---|
| 669 | enddo |
---|
[2600] | 670 | |
---|
[764] | 671 | do i=1,klon |
---|
[2600] | 672 | zdpsrf_omp(i)=zdpsrf(offset+i) |
---|
[764] | 673 | enddo |
---|
[985] | 674 | |
---|
| 675 | do l=1,llm |
---|
| 676 | do i=1,klon |
---|
| 677 | flxwfi_omp(i,l)=flxwfi(offset+i,l) |
---|
[2600] | 678 | enddo |
---|
[985] | 679 | enddo |
---|
[764] | 680 | |
---|
| 681 | c$OMP BARRIER |
---|
| 682 | |
---|
[1403] | 683 | !$OMP MASTER |
---|
[1407] | 684 | ! write(lunout,*) 'PHYSIQUE AVEC NSPLIT_PHYS=',nsplit_phys |
---|
[1403] | 685 | !$OMP END MASTER |
---|
| 686 | zdt_split=dtphys/nsplit_phys |
---|
| 687 | zdufic_omp(:,:)=0. |
---|
| 688 | zdvfic_omp(:,:)=0. |
---|
| 689 | zdtfic_omp(:,:)=0. |
---|
| 690 | zdqfic_omp(:,:,:)=0. |
---|
| 691 | |
---|
[1615] | 692 | #ifdef CPP_PHYS |
---|
[1403] | 693 | do isplit=1,nsplit_phys |
---|
| 694 | |
---|
| 695 | jH_cur_split=jH_cur+(isplit-1) * dtvr / (daysec *nsplit_phys) |
---|
| 696 | debut_split=debut.and.isplit==1 |
---|
| 697 | lafin_split=lafin.and.isplit==nsplit_phys |
---|
| 698 | |
---|
[2418] | 699 | CALL call_physiq(klon,llm,nqtot,tname, |
---|
| 700 | & debut_split,lafin_split, |
---|
| 701 | & jD_cur,jH_cur_split,zdt_split, |
---|
| 702 | & zplev_omp,zplay_omp, |
---|
[2604] | 703 | & zpk_omp,zphi_omp,zphis_omp, |
---|
[2418] | 704 | & presnivs_omp, |
---|
| 705 | & zufi_omp,zvfi_omp,zrfi_omp,ztfi_omp,zqfi_omp, |
---|
| 706 | & flxwfi_omp,pducov, |
---|
| 707 | & zdufi_omp,zdvfi_omp,zdtfi_omp,zdqfi_omp, |
---|
| 708 | & zdpsrf_omp) |
---|
[1403] | 709 | |
---|
| 710 | |
---|
| 711 | zufi_omp(:,:)=zufi_omp(:,:)+zdufi_omp(:,:)*zdt_split |
---|
| 712 | zvfi_omp(:,:)=zvfi_omp(:,:)+zdvfi_omp(:,:)*zdt_split |
---|
| 713 | ztfi_omp(:,:)=ztfi_omp(:,:)+zdtfi_omp(:,:)*zdt_split |
---|
| 714 | zqfi_omp(:,:,:)=zqfi_omp(:,:,:)+zdqfi_omp(:,:,:)*zdt_split |
---|
| 715 | |
---|
| 716 | zdufic_omp(:,:)=zdufic_omp(:,:)+zdufi_omp(:,:) |
---|
| 717 | zdvfic_omp(:,:)=zdvfic_omp(:,:)+zdvfi_omp(:,:) |
---|
| 718 | zdtfic_omp(:,:)=zdtfic_omp(:,:)+zdtfi_omp(:,:) |
---|
| 719 | zdqfic_omp(:,:,:)=zdqfic_omp(:,:,:)+zdqfi_omp(:,:,:) |
---|
| 720 | |
---|
| 721 | enddo |
---|
| 722 | |
---|
[1615] | 723 | #endif |
---|
| 724 | ! of #ifdef CPP_PHYS |
---|
| 725 | |
---|
[1403] | 726 | zdufi_omp(:,:)=zdufic_omp(:,:)/nsplit_phys |
---|
| 727 | zdvfi_omp(:,:)=zdvfic_omp(:,:)/nsplit_phys |
---|
| 728 | zdtfi_omp(:,:)=zdtfic_omp(:,:)/nsplit_phys |
---|
| 729 | zdqfi_omp(:,:,:)=zdqfic_omp(:,:,:)/nsplit_phys |
---|
[764] | 730 | c$OMP BARRIER |
---|
| 731 | |
---|
| 732 | do l=1,llm+1 |
---|
| 733 | do i=1,klon |
---|
| 734 | zplev(offset+i,l)=zplev_omp(i,l) |
---|
[2600] | 735 | enddo |
---|
[764] | 736 | enddo |
---|
[2600] | 737 | |
---|
[764] | 738 | do l=1,llm |
---|
| 739 | do i=1,klon |
---|
[2600] | 740 | zplay(offset+i,l)=zplay_omp(i,l) |
---|
| 741 | enddo |
---|
[764] | 742 | enddo |
---|
[2600] | 743 | |
---|
[764] | 744 | do l=1,llm |
---|
| 745 | do i=1,klon |
---|
[2600] | 746 | zphi(offset+i,l)=zphi_omp(i,l) |
---|
| 747 | enddo |
---|
[764] | 748 | enddo |
---|
[2600] | 749 | |
---|
[764] | 750 | |
---|
| 751 | do i=1,klon |
---|
[2600] | 752 | zphis(offset+i)=zphis_omp(i) |
---|
[764] | 753 | enddo |
---|
| 754 | |
---|
[2600] | 755 | |
---|
[764] | 756 | do l=1,llm |
---|
| 757 | presnivs(l)=presnivs_omp(l) |
---|
| 758 | enddo |
---|
[2600] | 759 | |
---|
[764] | 760 | do l=1,llm |
---|
| 761 | do i=1,klon |
---|
[2600] | 762 | zufi(offset+i,l)=zufi_omp(i,l) |
---|
| 763 | enddo |
---|
[764] | 764 | enddo |
---|
[2600] | 765 | |
---|
[764] | 766 | do l=1,llm |
---|
| 767 | do i=1,klon |
---|
[2600] | 768 | zvfi(offset+i,l)=zvfi_omp(i,l) |
---|
| 769 | enddo |
---|
[764] | 770 | enddo |
---|
[2600] | 771 | |
---|
[764] | 772 | do l=1,llm |
---|
| 773 | do i=1,klon |
---|
[2600] | 774 | ztfi(offset+i,l)=ztfi_omp(i,l) |
---|
| 775 | enddo |
---|
[764] | 776 | enddo |
---|
[2600] | 777 | |
---|
[1146] | 778 | do iq=1,nqtot |
---|
[764] | 779 | do l=1,llm |
---|
| 780 | do i=1,klon |
---|
| 781 | zqfi(offset+i,l,iq)=zqfi_omp(i,l,iq) |
---|
[2600] | 782 | enddo |
---|
| 783 | enddo |
---|
[764] | 784 | enddo |
---|
[2600] | 785 | |
---|
[764] | 786 | do l=1,llm |
---|
| 787 | do i=1,klon |
---|
[2600] | 788 | zdufi(offset+i,l)=zdufi_omp(i,l) |
---|
| 789 | enddo |
---|
[764] | 790 | enddo |
---|
[2600] | 791 | |
---|
[764] | 792 | do l=1,llm |
---|
| 793 | do i=1,klon |
---|
[2600] | 794 | zdvfi(offset+i,l)=zdvfi_omp(i,l) |
---|
| 795 | enddo |
---|
[764] | 796 | enddo |
---|
[2600] | 797 | |
---|
[764] | 798 | do l=1,llm |
---|
| 799 | do i=1,klon |
---|
| 800 | zdtfi(offset+i,l)=zdtfi_omp(i,l) |
---|
[2600] | 801 | enddo |
---|
[764] | 802 | enddo |
---|
[2600] | 803 | |
---|
[1146] | 804 | do iq=1,nqtot |
---|
[764] | 805 | do l=1,llm |
---|
| 806 | do i=1,klon |
---|
[2600] | 807 | zdqfi(offset+i,l,iq)=zdqfi_omp(i,l,iq) |
---|
| 808 | enddo |
---|
[764] | 809 | enddo |
---|
| 810 | enddo |
---|
[2600] | 811 | |
---|
[764] | 812 | do i=1,klon |
---|
[2600] | 813 | zdpsrf(offset+i)=zdpsrf_omp(i) |
---|
[764] | 814 | enddo |
---|
| 815 | |
---|
| 816 | |
---|
| 817 | klon=klon_mpi |
---|
[630] | 818 | 500 CONTINUE |
---|
[764] | 819 | c$OMP BARRIER |
---|
[630] | 820 | |
---|
[764] | 821 | c$OMP MASTER |
---|
[630] | 822 | call stop_timer(timer_physic) |
---|
[764] | 823 | c$OMP END MASTER |
---|
[1000] | 824 | |
---|
| 825 | IF (using_mpi) THEN |
---|
| 826 | |
---|
[630] | 827 | if (MPI_rank>0) then |
---|
[764] | 828 | |
---|
| 829 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
| 830 | DO l=1,llm |
---|
| 831 | du_send(1:iim,l)=zdufi(1:iim,l) |
---|
| 832 | dv_send(1:iim,l)=zdvfi(1:iim,l) |
---|
| 833 | ENDDO |
---|
| 834 | c$OMP END DO NOWAIT |
---|
| 835 | |
---|
| 836 | c$OMP BARRIER |
---|
[1000] | 837 | #ifdef CPP_MPI |
---|
[764] | 838 | c$OMP MASTER |
---|
[985] | 839 | !$OMP CRITICAL (MPI) |
---|
[630] | 840 | call MPI_ISSEND(du_send,iim*llm,MPI_REAL8,MPI_Rank-1,401, |
---|
[764] | 841 | & COMM_LMDZ,Req(1),ierr) |
---|
[630] | 842 | call MPI_ISSEND(dv_send,iim*llm,MPI_REAL8,MPI_Rank-1,402, |
---|
[764] | 843 | & COMM_LMDZ,Req(2),ierr) |
---|
[985] | 844 | !$OMP END CRITICAL (MPI) |
---|
[764] | 845 | c$OMP END MASTER |
---|
[1000] | 846 | #endif |
---|
[764] | 847 | c$OMP BARRIER |
---|
[630] | 848 | |
---|
| 849 | endif |
---|
| 850 | |
---|
| 851 | if (MPI_rank<MPI_Size-1) then |
---|
[764] | 852 | c$OMP BARRIER |
---|
[1000] | 853 | #ifdef CPP_MPI |
---|
[764] | 854 | c$OMP MASTER |
---|
[985] | 855 | !$OMP CRITICAL (MPI) |
---|
[630] | 856 | call MPI_IRECV(du_recv,iim*llm,MPI_REAL8,MPI_Rank+1,401, |
---|
[764] | 857 | & COMM_LMDZ,Req(3),ierr) |
---|
[630] | 858 | call MPI_IRECV(dv_recv,iim*llm,MPI_REAL8,MPI_Rank+1,402, |
---|
[764] | 859 | & COMM_LMDZ,Req(4),ierr) |
---|
[985] | 860 | !$OMP END CRITICAL (MPI) |
---|
[764] | 861 | c$OMP END MASTER |
---|
[1000] | 862 | #endif |
---|
[630] | 863 | endif |
---|
[764] | 864 | |
---|
| 865 | c$OMP BARRIER |
---|
[1000] | 866 | |
---|
| 867 | |
---|
| 868 | #ifdef CPP_MPI |
---|
[764] | 869 | c$OMP MASTER |
---|
[985] | 870 | !$OMP CRITICAL (MPI) |
---|
[630] | 871 | if (MPI_rank>0 .and. MPI_rank< MPI_Size-1) then |
---|
| 872 | call MPI_WAITALL(4,Req(1),Status,ierr) |
---|
| 873 | else if (MPI_rank>0) then |
---|
| 874 | call MPI_WAITALL(2,Req(1),Status,ierr) |
---|
| 875 | else if (MPI_rank <MPI_Size-1) then |
---|
| 876 | call MPI_WAITALL(2,Req(3),Status,ierr) |
---|
| 877 | endif |
---|
[985] | 878 | !$OMP END CRITICAL (MPI) |
---|
[764] | 879 | c$OMP END MASTER |
---|
[1000] | 880 | #endif |
---|
| 881 | |
---|
[764] | 882 | c$OMP BARRIER |
---|
| 883 | |
---|
[1000] | 884 | ENDIF ! using_mpi |
---|
| 885 | |
---|
| 886 | |
---|
[764] | 887 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
| 888 | DO l=1,llm |
---|
| 889 | |
---|
| 890 | zdufi2(1:klon,l)=zdufi(1:klon,l) |
---|
| 891 | zdufi2(klon+1:klon+iim,l)=du_recv(1:iim,l) |
---|
| 892 | |
---|
| 893 | zdvfi2(1:klon,l)=zdvfi(1:klon,l) |
---|
| 894 | zdvfi2(klon+1:klon+iim,l)=dv_recv(1:iim,l) |
---|
| 895 | |
---|
[774] | 896 | pdhfi(:,jj_begin,l)=0 |
---|
| 897 | pdqfi(:,jj_begin,l,:)=0 |
---|
| 898 | pdufi(:,jj_begin,l)=0 |
---|
| 899 | pdvfi(:,jj_begin,l)=0 |
---|
[764] | 900 | |
---|
[2429] | 901 | if (.not. is_south_pole_dyn) then |
---|
[774] | 902 | pdhfi(:,jj_end,l)=0 |
---|
| 903 | pdqfi(:,jj_end,l,:)=0 |
---|
| 904 | pdufi(:,jj_end,l)=0 |
---|
| 905 | pdvfi(:,jj_end,l)=0 |
---|
[764] | 906 | endif |
---|
[630] | 907 | |
---|
[764] | 908 | ENDDO |
---|
| 909 | c$OMP END DO NOWAIT |
---|
[630] | 910 | |
---|
[764] | 911 | c$OMP MASTER |
---|
[774] | 912 | pdpsfi(:,jj_begin)=0 |
---|
[2429] | 913 | if (.not. is_south_pole_dyn) then |
---|
[2600] | 914 | pdpsfi(:,jj_end)=0 |
---|
[630] | 915 | endif |
---|
[764] | 916 | c$OMP END MASTER |
---|
[630] | 917 | c----------------------------------------------------------------------- |
---|
| 918 | c transformation des tendances physiques en tendances dynamiques: |
---|
| 919 | c --------------------------------------------------------------- |
---|
| 920 | |
---|
| 921 | c tendance sur la pression : |
---|
| 922 | c ----------------------------------- |
---|
| 923 | CALL gr_fi_dyn_p(1,klon,iip1,jjp1,zdpsrf,pdpsfi) |
---|
| 924 | c |
---|
| 925 | c 62. enthalpie potentielle |
---|
| 926 | c --------------------- |
---|
| 927 | |
---|
| 928 | kstart=1 |
---|
| 929 | kend=klon |
---|
| 930 | |
---|
[2429] | 931 | if (is_north_pole_dyn) kstart=2 |
---|
| 932 | if (is_south_pole_dyn) kend=klon-1 |
---|
[630] | 933 | |
---|
[764] | 934 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 935 | DO l=1,llm |
---|
| 936 | |
---|
[1279] | 937 | !CDIR ON_ADB(index_i) |
---|
| 938 | !CDIR ON_ADB(index_j) |
---|
| 939 | !cdir NODEP |
---|
[630] | 940 | do ig0=kstart,kend |
---|
[774] | 941 | i=index_i(ig0) |
---|
| 942 | j=index_j(ig0) |
---|
[630] | 943 | pdhfi(i,j,l) = cpp * zdtfi(ig0,l) / ppk(i,j,l) |
---|
| 944 | if (i==1) pdhfi(iip1,j,l) = cpp * zdtfi(ig0,l) / ppk(i,j,l) |
---|
| 945 | enddo |
---|
| 946 | |
---|
[2429] | 947 | if (is_north_pole_dyn) then |
---|
[630] | 948 | DO i=1,iip1 |
---|
| 949 | pdhfi(i,1,l) = cpp * zdtfi(1,l) / ppk(i, 1 ,l) |
---|
| 950 | enddo |
---|
| 951 | endif |
---|
| 952 | |
---|
[2429] | 953 | if (is_south_pole_dyn) then |
---|
[630] | 954 | DO i=1,iip1 |
---|
| 955 | pdhfi(i,jjp1,l) = cpp * zdtfi(klon,l)/ ppk(i,jjp1,l) |
---|
| 956 | ENDDO |
---|
| 957 | endif |
---|
| 958 | ENDDO |
---|
[764] | 959 | c$OMP END DO NOWAIT |
---|
[630] | 960 | |
---|
| 961 | c 62. humidite specifique |
---|
| 962 | c --------------------- |
---|
[1279] | 963 | ! Ehouarn: removed this useless bit: was overwritten at step 63 anyways |
---|
| 964 | ! DO iq=1,nqtot |
---|
| 965 | !c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
| 966 | ! DO l=1,llm |
---|
| 967 | !!!cdir NODEP |
---|
| 968 | ! do ig0=kstart,kend |
---|
| 969 | ! i=index_i(ig0) |
---|
| 970 | ! j=index_j(ig0) |
---|
| 971 | ! pdqfi(i,j,l,iq) = zdqfi(ig0,l,iq) |
---|
| 972 | ! if (i==1) pdqfi(iip1,j,l,iq) = zdqfi(ig0,l,iq) |
---|
| 973 | ! enddo |
---|
| 974 | ! |
---|
[2429] | 975 | ! if (is_north_pole_dyn) then |
---|
[1279] | 976 | ! do i=1,iip1 |
---|
| 977 | ! pdqfi(i,1,l,iq) = zdqfi(1,l,iq) |
---|
| 978 | ! enddo |
---|
| 979 | ! endif |
---|
| 980 | ! |
---|
[2429] | 981 | ! if (is_south_pole_dyn) then |
---|
[1279] | 982 | ! do i=1,iip1 |
---|
| 983 | ! pdqfi(i,jjp1,l,iq) = zdqfi(klon,l,iq) |
---|
| 984 | ! enddo |
---|
| 985 | ! endif |
---|
| 986 | ! ENDDO |
---|
| 987 | !c$OMP END DO NOWAIT |
---|
| 988 | ! ENDDO |
---|
[630] | 989 | |
---|
| 990 | c 63. traceurs |
---|
| 991 | c ------------ |
---|
| 992 | C initialisation des tendances |
---|
[764] | 993 | |
---|
| 994 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
| 995 | DO l=1,llm |
---|
| 996 | pdqfi(:,:,l,:)=0. |
---|
| 997 | ENDDO |
---|
[2600] | 998 | c$OMP END DO NOWAIT |
---|
[764] | 999 | |
---|
[630] | 1000 | C |
---|
[1279] | 1001 | !cdir NODEP |
---|
[1146] | 1002 | DO iq=1,nqtot |
---|
[630] | 1003 | iiq=niadv(iq) |
---|
[764] | 1004 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 1005 | DO l=1,llm |
---|
[1279] | 1006 | !CDIR ON_ADB(index_i) |
---|
| 1007 | !CDIR ON_ADB(index_j) |
---|
| 1008 | !cdir NODEP |
---|
[2600] | 1009 | DO ig0=kstart,kend |
---|
[774] | 1010 | i=index_i(ig0) |
---|
| 1011 | j=index_j(ig0) |
---|
[630] | 1012 | pdqfi(i,j,l,iiq) = zdqfi(ig0,l,iq) |
---|
| 1013 | if (i==1) pdqfi(iip1,j,l,iiq) = zdqfi(ig0,l,iq) |
---|
| 1014 | ENDDO |
---|
[2600] | 1015 | |
---|
| 1016 | IF (is_north_pole_dyn) then |
---|
| 1017 | DO i=1,iip1 |
---|
[630] | 1018 | pdqfi(i,1,l,iiq) = zdqfi(1,l,iq) |
---|
[2600] | 1019 | ENDDO |
---|
| 1020 | ENDIF |
---|
| 1021 | |
---|
| 1022 | IF (is_south_pole_dyn) then |
---|
| 1023 | DO i=1,iip1 |
---|
[630] | 1024 | pdqfi(i,jjp1,l,iiq) = zdqfi(klon,l,iq) |
---|
[2600] | 1025 | ENDDO |
---|
| 1026 | ENDIF |
---|
| 1027 | |
---|
[630] | 1028 | ENDDO |
---|
[2600] | 1029 | c$OMP END DO NOWAIT |
---|
[630] | 1030 | ENDDO |
---|
| 1031 | |
---|
| 1032 | c 65. champ u: |
---|
| 1033 | c ------------ |
---|
[764] | 1034 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 1035 | DO l=1,llm |
---|
[1279] | 1036 | !CDIR ON_ADB(index_i) |
---|
| 1037 | !CDIR ON_ADB(index_j) |
---|
| 1038 | !cdir NODEP |
---|
[630] | 1039 | do ig0=kstart,kend |
---|
[774] | 1040 | i=index_i(ig0) |
---|
| 1041 | j=index_j(ig0) |
---|
[630] | 1042 | |
---|
| 1043 | if (i/=iim) then |
---|
| 1044 | pdufi(i,j,l)=0.5*(zdufi2(ig0,l)+zdufi2(ig0+1,l))*cu(i,j) |
---|
| 1045 | endif |
---|
| 1046 | |
---|
| 1047 | if (i==1) then |
---|
| 1048 | pdufi(iim,j,l)=0.5*( zdufi2(ig0,l) |
---|
| 1049 | $ + zdufi2(ig0+iim-1,l))*cu(iim,j) |
---|
[764] | 1050 | pdufi(iip1,j,l)=0.5*(zdufi2(ig0,l)+zdufi2(ig0+1,l))*cu(i,j) |
---|
[630] | 1051 | endif |
---|
| 1052 | |
---|
| 1053 | enddo |
---|
| 1054 | |
---|
[2429] | 1055 | if (is_north_pole_dyn) then |
---|
[630] | 1056 | DO i=1,iip1 |
---|
| 1057 | pdufi(i,1,l) = 0. |
---|
| 1058 | ENDDO |
---|
| 1059 | endif |
---|
| 1060 | |
---|
[2429] | 1061 | if (is_south_pole_dyn) then |
---|
[630] | 1062 | DO i=1,iip1 |
---|
| 1063 | pdufi(i,jjp1,l) = 0. |
---|
| 1064 | ENDDO |
---|
| 1065 | endif |
---|
| 1066 | |
---|
| 1067 | ENDDO |
---|
[764] | 1068 | c$OMP END DO NOWAIT |
---|
[630] | 1069 | |
---|
| 1070 | c 67. champ v: |
---|
| 1071 | c ------------ |
---|
| 1072 | |
---|
| 1073 | kstart=1 |
---|
| 1074 | kend=klon |
---|
| 1075 | |
---|
[2429] | 1076 | if (is_north_pole_dyn) kstart=2 |
---|
| 1077 | if (is_south_pole_dyn) kend=klon-1-iim |
---|
[630] | 1078 | |
---|
[764] | 1079 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 1080 | DO l=1,llm |
---|
[1279] | 1081 | !CDIR ON_ADB(index_i) |
---|
| 1082 | !CDIR ON_ADB(index_j) |
---|
| 1083 | !cdir NODEP |
---|
[630] | 1084 | do ig0=kstart,kend |
---|
[774] | 1085 | i=index_i(ig0) |
---|
| 1086 | j=index_j(ig0) |
---|
[630] | 1087 | pdvfi(i,j,l)=0.5*(zdvfi2(ig0,l)+zdvfi2(ig0+iim,l))*cv(i,j) |
---|
| 1088 | if (i==1) pdvfi(iip1,j,l) = 0.5*(zdvfi2(ig0,l)+ |
---|
[2600] | 1089 | $ zdvfi2(ig0+iim,l)) |
---|
| 1090 | $ *cv(i,j) |
---|
[630] | 1091 | enddo |
---|
| 1092 | |
---|
| 1093 | ENDDO |
---|
[764] | 1094 | c$OMP END DO NOWAIT |
---|
[630] | 1095 | |
---|
| 1096 | |
---|
| 1097 | c 68. champ v pres des poles: |
---|
| 1098 | c --------------------------- |
---|
| 1099 | c v = U * cos(long) + V * SIN(long) |
---|
| 1100 | |
---|
[2429] | 1101 | if (is_north_pole_dyn) then |
---|
[764] | 1102 | |
---|
| 1103 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
[630] | 1104 | DO l=1,llm |
---|
| 1105 | |
---|
| 1106 | DO i=1,iim |
---|
| 1107 | pdvfi(i,1,l)= |
---|
| 1108 | $ zdufi(1,l)*COS(rlonv(i))+zdvfi(1,l)*SIN(rlonv(i)) |
---|
| 1109 | |
---|
| 1110 | pdvfi(i,1,l)= |
---|
| 1111 | $ 0.5*(pdvfi(i,1,l)+zdvfi(i+1,l))*cv(i,1) |
---|
| 1112 | ENDDO |
---|
| 1113 | |
---|
| 1114 | pdvfi(iip1,1,l) = pdvfi(1,1,l) |
---|
| 1115 | |
---|
| 1116 | ENDDO |
---|
[764] | 1117 | c$OMP END DO NOWAIT |
---|
[630] | 1118 | |
---|
| 1119 | endif |
---|
| 1120 | |
---|
[2429] | 1121 | if (is_south_pole_dyn) then |
---|
[764] | 1122 | |
---|
| 1123 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
| 1124 | DO l=1,llm |
---|
[630] | 1125 | |
---|
| 1126 | DO i=1,iim |
---|
| 1127 | pdvfi(i,jjm,l)=zdufi(klon,l)*COS(rlonv(i)) |
---|
| 1128 | $ +zdvfi(klon,l)*SIN(rlonv(i)) |
---|
| 1129 | |
---|
| 1130 | pdvfi(i,jjm,l)= |
---|
| 1131 | $ 0.5*(pdvfi(i,jjm,l)+zdvfi(klon-iip1+i,l))*cv(i,jjm) |
---|
| 1132 | ENDDO |
---|
| 1133 | |
---|
| 1134 | pdvfi(iip1,jjm,l)= pdvfi(1,jjm,l) |
---|
| 1135 | |
---|
| 1136 | ENDDO |
---|
[764] | 1137 | c$OMP END DO NOWAIT |
---|
[630] | 1138 | |
---|
| 1139 | endif |
---|
| 1140 | c----------------------------------------------------------------------- |
---|
| 1141 | |
---|
| 1142 | 700 CONTINUE |
---|
| 1143 | |
---|
| 1144 | firstcal = .FALSE. |
---|
| 1145 | |
---|
[1617] | 1146 | #else |
---|
| 1147 | write(lunout,*) |
---|
| 1148 | & "calfis_p: for now can only work with parallel physics" |
---|
| 1149 | stop |
---|
| 1150 | #endif |
---|
| 1151 | ! of #ifdef CPP_PHYS |
---|
[2239] | 1152 | #endif |
---|
| 1153 | ! of #ifdef CPP_PARA |
---|
[630] | 1154 | END |
---|