source: ICOSA_LMDZ/src/phylmd/interface_icosa_lmdz.F90 @ 5498

Last change on this file since 5498 was 5498, checked in by yann meurdesoif, 4 days ago

Synchronize modification of readtrac_mod.
YM

File size: 31.9 KB
Line 
1MODULE interface_icosa_lmdz_mod
2
3  USE field_mod, ONLY: t_field
4  USE transfert_mod, ONLY: t_message
5 
6 
7  TYPE(t_message),SAVE :: req_u, req_z
8  TYPE(t_message),SAVE :: req_dps0, req_dulon0, req_dulat0, req_dTemp0, req_dq0
9
10  TYPE(t_field),POINTER,SAVE :: f_p(:)
11  TYPE(t_field),POINTER,SAVE :: f_pks(:) 
12  TYPE(t_field),POINTER,SAVE :: f_pk(:) 
13  TYPE(t_field),POINTER,SAVE :: f_p_layer(:)   
14  TYPE(t_field),POINTER,SAVE :: f_theta(:)   
15  TYPE(t_field),POINTER,SAVE :: f_phi(:)   
16  TYPE(t_field),POINTER,SAVE :: f_Temp(:)   
17  TYPE(t_field),POINTER,SAVE :: f_ulon(:)   
18  TYPE(t_field),POINTER,SAVE :: f_ulat(:)   
19  TYPE(t_field),POINTER,SAVE :: f_vort(:)   
20  TYPE(t_field),POINTER,SAVE :: f_vortc(:)   
21  TYPE(t_field),POINTER,SAVE :: f_dulon(:)
22  TYPE(t_field),POINTER,SAVE :: f_dulat(:)
23  TYPE(t_field),POINTER,SAVE :: f_dTemp(:)
24  TYPE(t_field),POINTER,SAVE :: f_dq(:)
25  TYPE(t_field),POINTER,SAVE :: f_dps(:)
26  TYPE(t_field),POINTER,SAVE :: f_duc(:)
27  TYPE(t_field),POINTER,SAVE :: f_bounds_lon(:)
28  TYPE(t_field),POINTER,SAVE :: f_bounds_lat(:)
29
30  INTEGER :: start_clock
31  INTEGER :: stop_clock
32  INTEGER :: count_clock=0
33 
34  INTEGER,SAVE :: nbp_phys
35  INTEGER,SAVE :: nbp_phys_glo
36
37
38CONTAINS
39
40  SUBROUTINE pre_initialize_physics
41  USE etat0_plugin_mod, ONLY : init_etat0_plugin, etat0_plugin
42  USE icolmdz_etat0, ONLY : init_etat0, etat0
43  USE icolmdz_param_gravity_wave, ONLY: init_param_gravity_wave
44  IMPLICIT NONE
45  !$OMP PARALLEL
46    init_etat0_plugin => init_etat0
47    etat0_plugin => etat0
48    CALL init_param_gravity_wave
49  !$OMP END PARALLEL
50  END SUBROUTINE pre_initialize_physics
51
52  SUBROUTINE initialize_physics
53  USE distrib_icosa_lmdz_mod, ONLY : init_distrib_icosa_lmdz, transfer_icosa_to_lmdz
54! from dynamico
55  USE domain_mod
56  USE dimensions
57  USE mpi_mod
58  USE mpipara
59  USE disvert_mod
60  USE xios_mod
61  USE time_mod , init_time_icosa=> init_time
62  USE transfert_mod
63  USE nudging_mod, ONLY : lam_halo_scheme
64 
65! from LMDZ
66  USE mod_grid_phy_lmdz, ONLY : unstructured
67  USE mod_phys_lmdz_omp_data, ONLY: klon_omp
68  USE transfert_mod
69  USE physics_distribution_mod, ONLY : init_physics_distribution
70  USE infotrac_phy, ONLY: init_infotrac_phy
71  USE icolmdz_param_gravity_wave, ONLY: param_gravity_wave
72
73   
74 
75  IMPLICIT NONE
76  INTEGER  :: ind,i,j,ij,pos,h
77  REAL(rstd),POINTER :: bounds_lon(:,:)
78  REAL(rstd),POINTER :: bounds_lat(:,:)
79 
80  REAL(rstd),ALLOCATABLE :: latfi(:)
81  REAL(rstd),ALLOCATABLE :: lonfi(:)
82  REAL(rstd),ALLOCATABLE :: airefi(:)
83  REAL(rstd),ALLOCATABLE :: bounds_latfi(:,:)
84  REAL(rstd),ALLOCATABLE :: bounds_lonfi(:,:)
85  LOGICAL   ,ALLOCATABLE :: outside(:,:)
86  LOGICAL   ,ALLOCATABLE :: outside_tmp(:,:)
87  LOGICAL   ,POINTER     :: out(:,:)
88!  REAL(rstd) :: pseudoalt(llm)
89
90  INTEGER :: nbp_phys, nbp_phys_glo
91 
92!$OMP PARALLEL
93    CALL allocate_field(f_bounds_lon,field_t,type_real,6)
94    CALL allocate_field(f_bounds_lat,field_t,type_real,6)
95    CALL allocate_field(f_p,field_t,type_real,llm+1,name="p_in")
96    CALL allocate_field(f_pks,field_t,type_real)
97    CALL allocate_field(f_pk,field_t,type_real,llm)
98    CALL allocate_field(f_p_layer,field_t,type_real,llm,name="p_layer_in")
99    CALL allocate_field(f_theta,field_t,type_real,llm)
100    CALL allocate_field(f_phi,field_t,type_real,llm,name="phi_in")
101    CALL allocate_field(f_Temp,field_t,type_real,llm,name="Temp_in")
102    CALL allocate_field(f_ulon,field_t,type_real,llm,name="ulon_in")
103    CALL allocate_field(f_ulat,field_t,type_real,llm,name="ulat_in")
104    CALL allocate_field(f_vort,field_z,type_real,llm,name="vort_in")
105    CALL allocate_field(f_vortc,field_t,type_real,llm,name="vortc_in")
106    CALL allocate_field(f_dulon,field_t,type_real,llm,name="dulon_out")
107    CALL allocate_field(f_dulat,field_t,type_real,llm,name="dulat_out")
108    CALL allocate_field(f_dTemp,field_t,type_real,llm,name="dTemp_out")
109    CALL allocate_field(f_dq,field_t,type_real,llm,nqtot,name="dq_out")
110    CALL allocate_field(f_dps,field_t,type_real,name="dps_out")
111    CALL allocate_field(f_duc,field_t,type_real,3,llm)   
112
113    CALL init_message(f_dps,req_i0,req_dps0)
114    CALL init_message(f_dulon,req_i0,req_dulon0)
115    CALL init_message(f_dulat,req_i0,req_dulat0)
116    CALL init_message(f_dTemp,req_i0,req_dTemp0)
117    CALL init_message(f_dq,req_i0,req_dq0)
118!$OMP END PARALLEL   
119
120    nbp_phys=0
121    DO ind=1,ndomain
122      CALL swap_dimensions(ind)
123
124      ALLOCATE(outside(ii_begin:ii_end,jj_begin:jj_end)) ! for limited area : don't take cells arround the border
125      ALLOCATE(outside_tmp(ii_begin-1:ii_end+1,jj_begin-1:jj_end+1)) ! for limited area : don't take cells arround the border
126      out=>domain(ind)%outside
127      DO j=jj_begin,jj_end
128        DO i=ii_begin,ii_end
129          outside(i,j)=  out(i+1,j)     .OR. & ! right
130                         out(i,j+1    ) .OR. & ! rup
131                         out(i-1  ,j+1) .OR. & ! lup
132                         out(i-1  ,j)   .OR. & !left
133                         out(i    ,j-1) .OR. & !ldown
134                         out(i+1,j-1)          !rdown   
135        ENDDO
136      ENDDO
137
138      outside_tmp=.FALSE.
139      outside_tmp(ii_begin:ii_end,jj_begin:jj_end)=outside
140     
141      DO h=1,lam_halo_scheme-1 ! do not compute physic on limited area halo
142        DO j=jj_begin,jj_end
143          DO i=ii_begin,ii_end
144              outside(i,j) = outside_tmp(i,j)       .OR. &
145                             outside_tmp(i+1,j)     .OR. & ! right
146                             outside_tmp(i,j+1    ) .OR. & ! rup
147                             outside_tmp(i-1  ,j+1) .OR. & ! lup
148                             outside_tmp(i-1  ,j)   .OR. & !left
149                             outside_tmp(i    ,j-1) .OR. & !ldown
150                             outside_tmp(i+1,j-1)          !rdown
151           ENDDO
152        ENDDO
153        outside_tmp(ii_begin:ii_end,jj_begin:jj_end)=outside
154      ENDDO
155     
156      DO j=jj_begin,jj_end
157        DO i=ii_begin,ii_end
158          IF (domain(ind)%own(i,j) .AND. .NOT.outside(i,j)) nbp_phys=nbp_phys+1
159        ENDDO
160      ENDDO
161      DEALLOCATE(outside)
162      DEALLOCATE(outside_tmp)
163    ENDDO
164   
165
166!initialize LMDZ5 physic mpi decomposition
167    CALL MPI_ALLREDUCE(nbp_phys,nbp_phys_glo,1,MPI_INTEGER,MPI_SUM,comm_icosa,ierr)
168    CALL init_physics_distribution(unstructured, 6, nbp_phys, 1, nbp_phys_glo, llm, comm_icosa)
169   
170    DO ind=1,ndomain
171        CALL swap_dimensions(ind)
172        CALL swap_geometry(ind)
173        bounds_lon=f_bounds_lon(ind)
174        bounds_lat=f_bounds_lat(ind)
175        DO j=jj_begin,jj_end
176          DO i=ii_begin,ii_end
177            ij=(j-1)*iim+i
178            CALL xyz2lonlat(xyz_v(ij+z_rup,:), bounds_lon(ij,1), bounds_lat(ij,1))
179            CALL xyz2lonlat(xyz_v(ij+z_up,:), bounds_lon(ij,2), bounds_lat(ij,2))
180            CALL xyz2lonlat(xyz_v(ij+z_lup,:), bounds_lon(ij,3), bounds_lat(ij,3))
181            CALL xyz2lonlat(xyz_v(ij+z_ldown,:), bounds_lon(ij,4), bounds_lat(ij,4))
182            CALL xyz2lonlat(xyz_v(ij+z_down,:), bounds_lon(ij,5), bounds_lat(ij,5))
183            CALL xyz2lonlat(xyz_v(ij+z_rdown,:), bounds_lon(ij,6), bounds_lat(ij,6))
184         ENDDO
185       ENDDO           
186    ENDDO
187
188  CALL init_infotrac_phy
189
190         
191!$OMP PARALLEL
192    CALL initialize_physics_omp
193    CALL param_gravity_wave
194!$OMP END PARALLEL           
195
196    CALL xios_set_context   
197
198  END SUBROUTINE initialize_physics
199
200
201  SUBROUTINE initialize_physics_omp
202  USE distrib_icosa_lmdz_mod, ONLY : init_distrib_icosa_lmdz, transfer_icosa_to_lmdz
203! from dynamico
204  USE domain_mod
205  USE dimensions
206  USE mpi_mod
207  USE mpipara
208  USE disvert_mod
209  USE earth_const, ONLY: scale_height
210  USE xios_mod
211  USE time_mod , init_time_icosa=> init_time
212  USE omp_para
213
214! from LMDZ
215  USE mod_grid_phy_lmdz, ONLY : unstructured, klon_glo
216  USE mod_phys_lmdz_para, ONLY: klon_omp, reduce_min_lmdz => reduce_min , gather_lmdz => gather , bcast_lmdz => bcast
217  USE time_phylmdz_mod, ONLY: init_time_lmdz => init_time
218  USE transfert_mod
219!  USE physics_distribution_mod, ONLY : init_physics_distribution
220  USE geometry_mod, ONLY : init_geometry
221  USE vertical_layers_mod, ONLY : init_vertical_layers
222  USE infotrac_phy, ONLY : init_infotrac_phy
223  USE inifis_mod, ONLY : inifis
224  USE readTracFiles_mod, ONLY: trac_type, isot_type
225  USE tracer_icosa_mod, ONLY : tracs
226   USE readTracFiles_mod, ONLY: delPhase
227!  USE phyaqua_mod, ONLY : iniaqua
228   USE phystokenc_mod, ONLY : init_phystokenc       !  use to generate mass flow files for offline mode
229 
230  IMPLICIT NONE
231
232
233
234  INTEGER  :: ind,i,j,k,ij,pos
235  REAL(rstd),POINTER :: bounds_lon(:,:)
236  REAL(rstd),POINTER :: bounds_lat(:,:)
237 
238  REAL(rstd),ALLOCATABLE :: latfi(:)
239  REAL(rstd),ALLOCATABLE :: lonfi(:)
240  REAL(rstd),ALLOCATABLE :: airefi(:)
241  REAL(rstd),ALLOCATABLE :: bounds_latfi(:,:)
242  REAL(rstd),ALLOCATABLE :: bounds_lonfi(:,:)
243  REAL(rstd),ALLOCATABLE :: ind_cell_glo_r(:)
244  INTEGER,   ALLOCATABLE :: ind_cell_glo(:)
245  INTEGER,   ALLOCATABLE :: ind_cell_glo_tot(:)
246  INTEGER,   ALLOCATABLE :: cell_glo_tot(:)
247  INTEGER :: ncell_glo_tot
248
249  REAL(rstd) :: pseudoalt(llm)
250  REAL(rstd) :: aps(llm)
251  REAL(rstd) :: bps(llm)
252  REAL(rstd) :: scaleheight
253
254  INTEGER :: run_length 
255  REAL :: day_length ! length of a day (s) ! SAVEd to be OpenMP shared <--- NO!!!!
256  INTEGER :: annee_ref 
257  INTEGER :: day_ref   
258  INTEGER :: day_ini   
259  REAL    :: start_time
260  REAL    :: physics_timestep   
261
262  ! Tracer stuff (SAVEd when needed to be OpenMP shared)
263  INTEGER :: nq
264  INTEGER                       :: nqo, nbtr, nbtr_inca
265  CHARACTER(len=256)              :: type_trac
266  INTEGER,ALLOCATABLE           :: conv_flg(:) ! conv_flg(it)=0 : convection desactivated for tracer number it
267  INTEGER,ALLOCATABLE           :: pbl_flg(:)  ! pbl_flg(it)=0  : boundary layer diffusion desactivaded for tracer number it
268  CHARACTER(len=8),ALLOCATABLE  :: solsym(:)  ! tracer name from inca
269
270  TYPE(t_field),POINTER,SAVE    :: f_ind_cell_glo(:)
271 
272  INTEGER :: iflag_phys   
273
274  INTEGER, ALLOCATABLE, DIMENSION(:) :: hadv_inca  ! index of horizontal trasport schema
275  INTEGER, ALLOCATABLE, DIMENSION(:) :: vadv_inca  ! index of vertical trasport schema
276
277   TYPE(trac_type) ::  tracers_ico2lmdz(nqtot)    !=== TRACERS DESCRIPTORS VECTOR
278   TYPE(isot_type) :: isotopes_ico2lmdz(1)        !=== ISOTOPES PARAMETERS VECTOR
279   INTEGER :: iq
280
281   CHARACTER(LEN=3)      :: descrq(30)            !--- Advection scheme description tags
282   logical, save :: first = .TRUE.
283
284   LOGICAL :: offline
285   INTEGER :: offline_time
286
287
288    CALL init_distrib_icosa_lmdz
289   
290    ALLOCATE(latfi(klon_omp))
291    ALLOCATE(lonfi(klon_omp))
292    ALLOCATE(airefi(klon_omp))
293    ALLOCATE(bounds_latfi(klon_omp,6))
294    ALLOCATE(bounds_lonfi(klon_omp,6))
295    ALLOCATE(ind_cell_glo_r(klon_omp))
296    ALLOCATE(ind_cell_glo(klon_omp))
297
298    CALL transfer_icosa_to_lmdz(geom%lat_i,latfi)
299    CALL transfer_icosa_to_lmdz(geom%lon_i,lonfi)
300    CALL transfer_icosa_to_lmdz(f_bounds_lat,bounds_latfi)
301    CALL transfer_icosa_to_lmdz(f_bounds_lon,bounds_lonfi)
302    CALL transfer_icosa_to_lmdz(geom%Ai,airefi)
303
304    CALL allocate_field(f_ind_cell_glo,field_t,type_real)
305   
306    DO ind=1,ndomain
307      IF (.NOT. assigned_domain(ind)  .OR. .NOT. is_omp_level_master ) CYCLE
308      CALL swap_dimensions(ind)
309      CALL swap_geometry(ind)
310      DO j=jj_begin,jj_end
311        DO i=ii_begin,ii_end
312          ij=(j-1)*iim+i
313          f_ind_cell_glo(ind)%rval2d(ij)=domain(ind)%assign_cell_glo(i,j)
314        ENDDO
315      ENDDO
316    ENDDO
317
318     
319   CALL transfer_icosa_to_lmdz(f_ind_cell_glo,ind_cell_glo_r)
320   CALL deallocate_field(f_ind_cell_glo)
321   ind_cell_glo=INT(ind_cell_glo_r)
322   DEALLOCATE(ind_cell_glo_r)   
323   
324   
325   CALL reduce_min_lmdz(MINVAL(-ind_cell_glo),ncell_glo_tot) ! reduce_max does not exist in lmdz, use reduce_min
326   CALL bcast_lmdz(ncell_glo_tot)
327   ncell_glo_tot=-ncell_glo_tot
328   ALLOCATE(cell_glo_tot(0:ncell_glo_tot))
329   ALLOCATE(ind_cell_glo_tot(klon_glo))
330   CALL gather_lmdz(ind_cell_glo,ind_cell_glo_tot)
331   CALL bcast_lmdz(ind_cell_glo_tot)
332   
333   cell_glo_tot=-1
334   DO i=1,klon_glo
335     cell_glo_tot(ind_cell_glo_tot(i))= 0
336   ENDDO
337   
338   pos=0
339   DO i=0,ncell_glo_tot
340     IF (cell_glo_tot(i)/=-1) THEN
341       cell_glo_tot(i) = pos
342       pos=pos + 1
343     ENDIF
344   ENDDO
345
346   DO i=1,klon_omp
347     ind_cell_glo(i)=cell_glo_tot(ind_cell_glo(i))
348   ENDDO 
349
350   ind_cell_glo = ind_cell_glo + 1 ! lmdz expect global indices begining to 1 not 0
351 
352   
353!   CALL MPI_ALLGATHER(ncell,1,MPI_INTEGER,ncell_mpi,1,MPI_INTEGER,comm_icosa,ierr)
354!
355!   displ(0)=0
356!   DO i=1,mpi_size-1
357!     displ(i)=displ(i-1)+ncell_mpi(i-1)
358!   ENDDO
359!   
360!   ALLOCATE(ind_glo_tot(ncell_tot))
361!   ALLOCATE(cell_glo_tot(0:ncell_glo_tot-1))
362!   
363!   cell_glo_tot(:)= -1
364!   CALL MPI_ALLGATHERV(ind_glo, ncell, MPI_INTEGER, ind_glo_tot, ncell_mpi, displ, MPI_INTEGER, comm_icosa,ierr)
365!   
366!   DO i=1,ncell_tot
367!     cell_glo_tot(ind_glo_tot(i))= 0
368!   ENDDO
369!
370!   ncell_glo=0
371!   DO i=0,ncell_glo_tot-1
372!     IF (cell_glo_tot(i)/=-1) THEN
373!       cell_glo_tot(i) = ncell_glo
374!       ncell_glo=ncell_glo + 1
375!     ENDIF
376!   ENDDO
377!
378!   DO i=1,ncell
379!     ind_glo(i)=cell_glo_tot(ind_glo(i))
380!   ENDDO 
381
382             
383    CALL init_geometry(klon_omp,lonfi, latfi, bounds_lonfi, bounds_latfi, airefi, ind_cell_glo)
384
385    scaleheight=scale_height/1000. ! Atmospheric scale height (km)
386    aps(1:llm)=0.5*(ap(1:llm)+ap(2:llm+1))
387    bps(1:llm)=0.5*(bp(1:llm)+bp(2:llm+1))
388    pseudoalt(:)=-scaleheight*log(presnivs(:)/preff)
389    CALL init_vertical_layers(llm,preff,scaleheight,ap,bp,aps,bps,presnivs,presinter,pseudoalt)
390
391    ! Initialize tracer names, numbers, etc. for physics
392    !Config  Key  = type_trac
393    !Config  Desc = Choix de couplage avec model de chimie INCA ou REPROBUS
394    !Config  Def  = lmdz
395    !Config  Help =
396    !Config  'lmdz' = pas de couplage, pur LMDZ
397    !Config  'lmdz|inca' = model de chime INCA
398    !Config  'lmdz|repr' = model de chime REPROBUS
399    type_trac = 'lmdz'
400    CALL getin('type_trac',type_trac)
401
402    descrq( 1: 2) = ['LMV','BAK']
403    descrq(10:20) = ['VL1','VLP','FH1','FH2','VLH','   ','PPM','PPS','PPP','   ','SLP']
404    descrq(30)    =  'PRA'
405
406    nqo = 0
407    DO iq=1,nqtot
408
409       tracers_ico2lmdz(iq)%name = tracs(iq)%name
410       
411       tracers_ico2lmdz(iq)%gen0Name = tracs(iq)%name
412       tracers_ico2lmdz(iq)%phase = tracs(iq)%phase
413       tracers_ico2lmdz(iq)%iadv = tracs(iq)%iadv
414         
415       IF (tracs(iq)%component .eq. "dynamico") then
416          tracers_ico2lmdz(iq)%component='lmdz'
417       ELSE
418          tracers_ico2lmdz(iq)%component=tracs(iq)%component
419       ENDIF
420
421       tracers_ico2lmdz(iq)%longName   = tracers_ico2lmdz(iq)%name
422       IF(tracers_ico2lmdz(iq)%iadv > 0) tracers_ico2lmdz(iq)%longName=TRIM(tracers_ico2lmdz(iq)%name)//descrq(tracers_ico2lmdz(iq)%iadv)
423
424       tracers_ico2lmdz(iq)%iGeneration = 0
425
426    ENDDO
427
428    nqo = COUNT(delPhase(tracs(:)%name) == 'H2O' .AND. tracers_ico2lmdz(:)%component == 'lmdz') !--- Number of water phases
429
430    isotopes_ico2lmdz(1)%parent='H2O'
431    isotopes_ico2lmdz(1)%phase='gls'
432    isotopes_ico2lmdz(1)%nphas=3
433     
434
435    nbtr=nqtot-nqo
436
437    ALLOCATE(conv_flg(nbtr))
438    ALLOCATE(pbl_flg(nbtr))
439
440    conv_flg(:) = 1 ! convection activated for all tracers
441    pbl_flg(:)  = 1 ! boundary layer activated for all tracers
442       
443
444    CALL init_infotrac_phy
445
446   ! Initialize physical constant
447    day_length=86400
448    CALL getin('day_length',day_length)
449    CALL inifis(day_length,radius,g,kappa*cpp,cpp)
450 
451
452   
453  ! init time
454    annee_ref=2015
455    CALL getin("anneeref",annee_ref)
456   
457    day_ref=1
458    CALL getin("dayref",day_ref)
459   
460    physics_timestep=dt*itau_physics
461    run_length=itaumax*dt
462    ndays=NINT(run_length/day_length)
463   
464    day_ini=INT(itau0*dt/day_length)+day_ref
465    start_time= itau0*dt/day_length-INT(itau0*dt/day_length)
466
467    CALL init_time_lmdz(annee_ref, day_ref, day_ini, start_time, int(ndays), physics_timestep)
468
469
470    ! Init Offline mode
471    offline = .FALSE.
472    CALL getin('offline',offline)
473
474    !  Choosing storage frequencies for offline mass flow files 
475    !  offline_time=12    2h=1day/12
476    !  offline_time=8     3h=1day/8
477    offline_time = 8
478    CALL getin('offline_time',offline_time)
479
480    ! Copy over "offline" settings
481    ! Flag and number of time steps for flux calculation and output
482    CALL init_phystokenc(offline,int(day_length/(offline_time*physics_timestep)))
483
484   
485!  Additional initializations for aquaplanets
486!    CALL getin("iflag_phys",iflag_phys)
487!    IF (iflag_phys>=100) THEN
488!      CALL iniaqua(klon_omp, iflag_phys)
489!    END IF
490
491 
492
493#ifdef INCA
494    CONTAINS
495
496      SUBROUTINE init_chem_trac()
497        IMPLICIT NONE
498
499        CALL  Init_chem_inca_trac(nbtr)
500
501      END SUBROUTINE init_chem_trac
502
503      SUBROUTINE init_chem_transport()
504
505        IMPLICIT NONE
506
507        CALL init_transport(solsym, conv_flg,pbl_flg, hadv_inca, vadv_inca)
508
509      END SUBROUTINE init_chem_transport
510
511
512#else
513    CONTAINS
514      SUBROUTINE init_chem_trac()
515        IMPLICIT NONE
516
517      END SUBROUTINE init_chem_trac
518
519      SUBROUTINE init_chem_transport()
520
521        IMPLICIT NONE
522
523      END SUBROUTINE init_chem_transport
524
525
526#endif
527
528
529
530  END SUBROUTINE  initialize_physics_omp
531 
532 
533
534
535  SUBROUTINE physics
536  USE icosa
537  USE time_mod
538  USE disvert_mod
539  USE transfert_mod
540  USE mpipara
541  USE xios_mod
542  USE wxios_mod
543  USE trace
544  USE distrib_icosa_lmdz_mod, ONLY : transfer_icosa_to_lmdz, transfer_lmdz_to_icosa
545  USE physics_external_mod, ONLY : it, f_phis, f_ps, f_theta_rhodz, f_u, f_wflux, f_q
546  USE write_field_mod
547  USE checksum_mod
548  USE vorticity_mod
549
550! from LMDZ
551  USE mod_phys_lmdz_omp_data, ONLY: klon_omp
552  USE geometry_mod, ONLY : cell_area
553  USE physiq_mod, ONLY: physiq
554  USE icolmdz_param_gravity_wave, ONLY: param_gravity_wave
555  IMPLICIT NONE
556 
557    REAL(rstd),POINTER :: phis(:)
558    REAL(rstd),POINTER :: ps(:)
559    REAL(rstd),POINTER :: theta_rhodz(:,:,:)
560    REAL(rstd),POINTER :: u(:,:)
561    REAL(rstd),POINTER :: wflux(:,:)
562    REAL(rstd),POINTER :: q(:,:,:)
563    REAL(rstd),POINTER :: p(:,:)
564    REAL(rstd),POINTER :: pks(:)
565    REAL(rstd),POINTER :: pk(:,:)
566    REAL(rstd),POINTER :: p_layer(:,:)
567    REAL(rstd),POINTER :: theta(:,:)
568    REAL(rstd),POINTER :: phi(:,:)
569    REAL(rstd),POINTER :: Temp(:,:)
570    REAL(rstd),POINTER :: ulon(:,:)
571    REAL(rstd),POINTER :: ulat(:,:)
572    REAL(rstd),POINTER :: vort(:,:)
573    REAL(rstd),POINTER :: vortc(:,:)
574    REAL(rstd),POINTER :: dulon(:,:)
575    REAL(rstd),POINTER :: dulat(:,:)
576    REAL(rstd),POINTER :: dTemp(:,:)
577    REAL(rstd),POINTER :: dq(:,:,:)
578    REAL(rstd),POINTER :: dps(:)
579    REAL(rstd),POINTER :: duc(:,:,:)
580
581
582    INTEGER :: ind,l
583   
584    REAL(rstd),ALLOCATABLE,SAVE :: ps_phy(:)
585!$OMP THREADPRIVATE(ps_phy)
586    REAL(rstd),ALLOCATABLE,SAVE :: p_phy(:,:)
587!$OMP THREADPRIVATE(p_phy)
588    REAL(rstd),ALLOCATABLE,SAVE :: p_layer_phy(:,:)
589!$OMP THREADPRIVATE(p_layer_phy)
590    REAL(rstd),ALLOCATABLE,SAVE :: Temp_phy(:,:)
591!$OMP THREADPRIVATE(Temp_phy)
592    REAL(rstd),ALLOCATABLE,SAVE :: phis_phy(:)
593!$OMP THREADPRIVATE(phis_phy)
594    REAL(rstd),ALLOCATABLE,SAVE :: phi_phy(:,:)
595!$OMP THREADPRIVATE(phi_phy)
596    REAL(rstd),ALLOCATABLE,SAVE :: ulon_phy(:,:)
597!$OMP THREADPRIVATE(ulon_phy)
598    REAL(rstd),ALLOCATABLE,SAVE :: ulat_phy(:,:)
599!$OMP THREADPRIVATE(ulat_phy)
600    REAL(rstd),ALLOCATABLE,SAVE :: rot_phy(:,:)
601!$OMP THREADPRIVATE(rot_phy)
602    REAL(rstd),ALLOCATABLE,SAVE :: q_phy(:,:,:)
603!$OMP THREADPRIVATE(q_phy)
604    REAL(rstd),ALLOCATABLE,SAVE :: wflux_phy(:,:)
605!$OMP THREADPRIVATE(wflux_phy)
606    REAL(rstd),ALLOCATABLE,SAVE :: dulon_phy(:,:)
607!$OMP THREADPRIVATE(dulon_phy)
608    REAL(rstd),ALLOCATABLE,SAVE :: dulat_phy(:,:)
609!$OMP THREADPRIVATE(dulat_phy)
610    REAL(rstd),ALLOCATABLE,SAVE :: dTemp_phy(:,:)
611!$OMP THREADPRIVATE(dTemp_phy)
612    REAL(rstd),ALLOCATABLE,SAVE :: dq_phy(:,:,:)
613!$OMP THREADPRIVATE(dq_phy)
614    REAL(rstd),ALLOCATABLE,SAVE :: dps_phy(:)
615!$OMP THREADPRIVATE(dps_phy)
616    REAL(rstd)   :: dtphy
617    LOGICAL      :: debut
618    LOGICAL      :: lafin
619    LOGICAL,SAVE :: first=.TRUE.
620!$OMP THREADPRIVATE(first)
621
622   
623    IF(first) THEN
624      debut=.TRUE.
625    ELSE
626      debut=.FALSE.
627    ENDIF
628
629
630    IF(it-itau0>=itaumax) THEN
631      lafin=.TRUE.
632    ELSE
633      lafin=.FALSE.
634    ENDIF
635
636    IF (first) THEN
637      first=.FALSE.
638      CALL init_message(f_u,req_e1_vect,req_u)
639      CALL init_message(f_vort,req_z1_scal,req_z)
640      ALLOCATE(ps_phy(klon_omp))
641      ALLOCATE(p_phy(klon_omp,llm+1))
642      ALLOCATE(p_layer_phy(klon_omp,llm))
643      ALLOCATE(Temp_phy(klon_omp,llm))
644      ALLOCATE(phis_phy(klon_omp))
645      ALLOCATE(phi_phy(klon_omp,llm))
646      ALLOCATE(ulon_phy(klon_omp,llm))
647      ALLOCATE(ulat_phy(klon_omp,llm))
648      ALLOCATE(rot_phy(klon_omp,llm))
649      ALLOCATE(q_phy(klon_omp,llm,nqtot))
650      ALLOCATE(wflux_phy(klon_omp,llm))
651      ALLOCATE(dulon_phy(klon_omp,llm))
652      ALLOCATE(dulat_phy(klon_omp,llm))
653      ALLOCATE(dTemp_phy(klon_omp,llm))
654      ALLOCATE(dq_phy(klon_omp,llm,nqtot))
655      ALLOCATE(dps_phy(klon_omp))
656!$OMP BARRIER
657     
658!      CALL param_gravity_wave
659    ENDIF
660
661
662!$OMP MASTER       
663!    CALL update_calendar(it)
664!$OMP END MASTER
665!$OMP BARRIER
666    dtphy=itau_physics*dt
667   
668   
669   
670    CALL transfert_message(f_u,req_u)
671    DO ind=1,ndomain
672      IF (assigned_domain(ind)) THEN
673        CALL swap_dimensions(ind)
674        CALL swap_geometry(ind)
675        u=f_u(ind)
676        vort=f_vort(ind)
677        CALL compute_vorticity(u,vort)
678      ENDIF
679    ENDDO
680
681    CALL transfert_message(f_vort,req_z)
682
683   
684    DO ind=1,ndomain
685      CALL swap_dimensions(ind)
686      IF (assigned_domain(ind)) THEN
687        CALL swap_geometry(ind)
688     
689        phis=f_phis(ind)
690        ps=f_ps(ind)
691        theta_rhodz=f_theta_rhodz(ind)
692        u=f_u(ind)
693        q=f_q(ind)
694        wflux=f_wflux(ind)
695        p=f_p(ind)
696        pks=f_pks(ind)
697        pk=f_pk(ind)
698        p_layer=f_p_layer(ind)
699        theta=f_theta(ind)
700        phi=f_phi(ind)
701        Temp=f_Temp(ind)
702        ulon=f_ulon(ind)
703        ulat=f_ulat(ind)
704        vort=f_vort(ind)
705        vortc=f_vortc(ind)
706           
707        CALL grid_icosa_to_physics
708
709      ENDIF
710    ENDDO
711   
712!$OMP BARRIER
713!$OMP MASTER
714    CALL SYSTEM_CLOCK(start_clock)
715!$OMP END MASTER
716    CALL trace_start("physic")
717!    CALL trace_off()
718
719
720!    CALL writeField("p_in",f_p)
721!    CALL writeField("p_layer_in",f_p_layer)
722!    CALL writeField("phi_in",f_phi)
723!    CALL writeField("phis_in",f_phis)
724!    CALL writeField("ulon_in",f_ulon)
725!    CALL writeField("ulat_in",f_ulat)
726!    CALL writeField("Temp_in",f_Temp)
727!    CALL writeField("q_in",f_q)
728!    CALL writeField("wflux_in",f_wflux)
729!     CALL writeField("vortc",f_vortc)
730
731!    CALL checksum(f_p)
732!    CALL checksum(f_p_layer)
733!    CALL checksum(f_phi)
734!    CALL checksum(f_phis)
735!    CALL checksum(f_ulon)
736!    CALL checksum(f_ulat)
737!    CALL checksum(f_Temp)
738!    CALL checksum(f_q)
739!    CALL checksum(f_wflux)
740
741    CALL transfer_icosa_to_lmdz(f_p      , p_phy)
742    CALL transfer_icosa_to_lmdz(f_p_layer, p_layer_phy)
743    CALL transfer_icosa_to_lmdz(f_phi    , phi_phy)
744    CALL transfer_icosa_to_lmdz(f_phis   , phis_phy )
745    CALL transfer_icosa_to_lmdz(f_ulon   , ulon_phy )
746    CALL transfer_icosa_to_lmdz(f_ulat   , ulat_phy)
747    CALL transfer_icosa_to_lmdz(f_vortc   , rot_phy)
748    CALL transfer_icosa_to_lmdz(f_Temp   , Temp_phy)
749    CALL transfer_icosa_to_lmdz(f_q      , q_phy)
750    CALL transfer_icosa_to_lmdz(f_wflux  , wflux_phy)
751
752    DO l=1,llm
753      wflux_phy(:,l) = - wflux_phy(:,l)*cell_area(:)
754      phi_phy(:,l)=phi_phy(:,l)-phis_phy(:)
755    ENDDO
756   
757    CALL wxios_set_context()
758 
759    ! Ehouarn: rot_phy() not implemented!! Set it to zero for now
760!    rot_phy(:,:)=0
761    CALL physiq(klon_omp, llm, debut, lafin, dtphy, &
762                p_phy, p_layer_phy, phi_phy, phis_phy, presnivs, &
763                ulon_phy, ulat_phy, rot_phy, Temp_phy, q_phy, wflux_phy, &
764                dulon_phy, dulat_phy, dTemp_phy, dq_phy, dps_phy)
765   
766    CALL transfer_lmdz_to_icosa(dulon_phy, f_dulon )
767    CALL transfer_lmdz_to_icosa(dulat_phy, f_dulat )
768    CALL transfer_lmdz_to_icosa(dTemp_phy, f_dTemp )
769    CALL transfer_lmdz_to_icosa(dq_phy   , f_dq )
770    CALL transfer_lmdz_to_icosa(dps_phy  , f_dps )
771 
772!    CALL writeField("dulon_out",f_dulon)
773!    CALL writeField("dulat_out",f_dulat)
774!    CALL writeField("dTemp_out",f_dTemp)
775!    CALL writeField("dq_out",f_dq)
776!    CALL writeField("dps_out",f_dps)
777
778!    CALL checksum(f_dulon)
779!    CALL checksum(f_dulat)
780!    CALL checksum(f_dTemp)
781!    CALL checksum(f_dq)
782!    CALL checksum(f_dps)
783   
784    CALL send_message(f_dps,req_dps0)
785    CALL send_message(f_dulon,req_dulon0)
786    CALL send_message(f_dulat,req_dulat0)
787    CALL send_message(f_dTemp,req_dTemp0)
788    CALL send_message(f_dq,req_dq0)
789
790    CALL wait_message(req_dps0)
791    CALL wait_message(req_dulon0)
792    CALL wait_message(req_dulat0)
793    CALL wait_message(req_dTemp0)
794    CALL wait_message(req_dq0)
795
796
797!    CALL trace_on()
798    CALL trace_end("physic")
799!$OMP MASTER
800    CALL SYSTEM_CLOCK(stop_clock)
801    count_clock=count_clock+stop_clock-start_clock
802!$OMP END MASTER
803
804!$OMP BARRIER                       
805
806    DO ind=1,ndomain
807      CALL swap_dimensions(ind)
808      IF (assigned_domain(ind)) THEN
809        CALL swap_geometry(ind)
810
811        theta_rhodz=f_theta_rhodz(ind)
812        u=f_u(ind)
813        q=f_q(ind)
814        ps=f_ps(ind)
815        dulon=f_dulon(ind)
816        dulat=f_dulat(ind)
817        Temp=f_temp(ind)
818        dTemp=f_dTemp(ind)
819        dq=f_dq(ind)
820        dps=f_dps(ind)
821        duc=f_duc(ind)
822        p=f_p(ind)
823        pks=f_pks(ind)
824        pk=f_pk(ind)
825     
826        CALL grid_physics_to_icosa
827      ENDIF
828    ENDDO
829
830!$OMP BARRIER
831    CALL xios_set_context   
832   
833 
834  CONTAINS
835
836    SUBROUTINE grid_icosa_to_physics
837    USE pression_mod
838    USE exner_mod
839    USE theta2theta_rhodz_mod
840    USE geopotential_mod
841    USE wind_from_lonlat_mod
842    USE omp_para
843    IMPLICIT NONE
844   
845    REAL(rstd) :: uc(3)
846    INTEGER :: i,j,ij,l
847
848! compute pression
849
850      DO    l    = ll_begin,ll_endp1
851        DO j=jj_begin,jj_end
852          DO i=ii_begin,ii_end
853            ij=(j-1)*iim+i
854            p(ij,l) = ap(l) + bp(l) * ps(ij)
855          ENDDO
856        ENDDO
857      ENDDO
858
859!$OMP BARRIER
860
861! compute exner
862       
863       IF (is_omp_first_level) THEN
864         DO j=jj_begin,jj_end
865            DO i=ii_begin,ii_end
866               ij=(j-1)*iim+i
867               pks(ij) = cpp * ( ps(ij)/preff ) ** kappa
868            ENDDO
869         ENDDO
870       ENDIF
871
872       ! 3D : pk
873       DO l = ll_begin,ll_end
874          DO j=jj_begin,jj_end
875             DO i=ii_begin,ii_end
876                ij=(j-1)*iim+i
877                pk(ij,l) = cpp * ((.5/preff)*(p(ij,l)+p(ij,l+1))) ** kappa
878             ENDDO
879          ENDDO
880       ENDDO
881
882!$OMP BARRIER
883
884!   compute theta, temperature and pression at layer
885    DO    l    = ll_begin, ll_end
886      DO j=jj_begin,jj_end
887        DO i=ii_begin,ii_end
888          ij=(j-1)*iim+i
889          theta(ij,l) = theta_rhodz(ij,l,1) / ((p(ij,l)-p(ij,l+1))/g)
890          Temp(ij,l) = theta(ij,l) * pk(ij,l) / cpp
891          p_layer(ij,l)=preff*(pk(ij,l)/cpp)**(1./kappa)
892        ENDDO
893      ENDDO
894    ENDDO
895
896
897!!! Compute geopotential
898       
899  ! for first layer
900  IF (is_omp_first_level) THEN
901    DO j=jj_begin,jj_end
902      DO i=ii_begin,ii_end
903        ij=(j-1)*iim+i
904        phi( ij,1 ) = phis( ij ) + theta(ij,1) * ( pks(ij) - pk(ij,1) )
905      ENDDO
906    ENDDO
907  ENDIF
908!!-> implicit flush on phi(:,1)
909
910!$OMP BARRIER
911         
912  ! for other layers
913  DO l = ll_beginp1, ll_end
914    DO j=jj_begin,jj_end
915      DO i=ii_begin,ii_end
916        ij=(j-1)*iim+i
917        phi(ij,l) =  0.5 * ( theta(ij,l)  + theta(ij,l-1) )  &
918                         * (  pk(ij,l-1) -  pk(ij,l)    )
919      ENDDO
920    ENDDO
921  ENDDO       
922
923!$OMP BARRIER
924
925
926  IF (is_omp_first_level) THEN
927    DO l = 2, llm
928      DO j=jj_begin,jj_end
929! ---> Bug compilo intel ici en openmp
930! ---> Couper la boucle
931       IF (j==jj_end+1) PRINT*,"this message must not be printed"
932        DO i=ii_begin,ii_end
933          ij=(j-1)*iim+i
934          phi(ij,l) = phi(ij,l)+ phi(ij,l-1)
935        ENDDO
936      ENDDO
937    ENDDO
938! --> IMPLICIT FLUSH on phi --> non
939  ENDIF
940
941! compute wind centered lon lat compound
942    DO l=ll_begin,ll_end
943      DO j=jj_begin,jj_end
944        DO i=ii_begin,ii_end
945          ij=(j-1)*iim+i
946          uc(:)=1/Ai(ij)*                                                                                                &
947                        ( ne(ij,right)*u(ij+u_right,l)*le(ij+u_right)*((xyz_v(ij+z_rdown,:)+xyz_v(ij+z_rup,:))/2-centroid(ij,:))  &
948                         + ne(ij,rup)*u(ij+u_rup,l)*le(ij+u_rup)*((xyz_v(ij+z_rup,:)+xyz_v(ij+z_up,:))/2-centroid(ij,:))          &
949                         + ne(ij,lup)*u(ij+u_lup,l)*le(ij+u_lup)*((xyz_v(ij+z_up,:)+xyz_v(ij+z_lup,:))/2-centroid(ij,:))          &
950                         + ne(ij,left)*u(ij+u_left,l)*le(ij+u_left)*((xyz_v(ij+z_lup,:)+xyz_v(ij+z_ldown,:))/2-centroid(ij,:))    &
951                         + ne(ij,ldown)*u(ij+u_ldown,l)*le(ij+u_ldown)*((xyz_v(ij+z_ldown,:)+xyz_v(ij+z_down,:))/2-centroid(ij,:))&
952                         + ne(ij,rdown)*u(ij+u_rdown,l)*le(ij+u_rdown)*((xyz_v(ij+z_down,:)+xyz_v(ij+z_rdown,:))/2-centroid(ij,:)))
953          ulon(ij,l)=sum(uc(:)*elon_i(ij,:))
954          ulat(ij,l)=sum(uc(:)*elat_i(ij,:))
955        ENDDO
956      ENDDO
957    ENDDO
958
959
960! compute centered vorticity
961   
962    DO l=ll_begin,ll_end
963      DO j=jj_begin,jj_end
964        DO i=ii_begin,ii_end
965          ij=(j-1)*iim+i
966          vortc(ij,l) =  Riv(ij,vup)    * vort(ij+z_up,l)    + &
967                         Riv(ij,vlup)  * vort(ij+z_lup,l)   + &
968                         Riv(ij,vldown)* vort(ij+z_ldown,l) + &
969                         Riv(ij,vdown) * vort(ij+z_down,l)  + &
970                         Riv(ij,vrdown)* vort(ij+z_rdown,l) + &
971                         Riv(ij,vrup)  * vort(ij+z_rup,l)
972      ENDDO
973    ENDDO
974  ENDDO
975
976
977
978!$OMP BARRIER
979    END SUBROUTINE grid_icosa_to_physics
980
981
982    SUBROUTINE grid_physics_to_icosa
983    USE theta2theta_rhodz_mod
984    USE omp_para
985    IMPLICIT NONE
986      INTEGER :: i,j,ij,l,iq
987         
988      DO l=ll_begin,ll_end
989        DO j=jj_begin,jj_end
990          DO i=ii_begin,ii_end
991            ij=(j-1)*iim+i
992            duc(ij,:,l)=dulon(ij,l)*elon_i(ij,:)+dulat(ij,l)*elat_i(ij,:)
993          ENDDO
994        ENDDO
995      ENDDO
996
997      DO l=ll_begin,ll_end
998        DO j=jj_begin,jj_end
999          DO i=ii_begin,ii_end
1000            ij=(j-1)*iim+i
1001            u(ij+u_right,l) = u(ij+u_right,l) + dtphy * sum( 0.5*(duc(ij,:,l) + duc(ij+t_right,:,l))*ep_e(ij+u_right,:) )
1002            u(ij+u_lup,l) = u(ij+u_lup,l) + dtphy * sum( 0.5*(duc(ij,:,l) + duc(ij+t_lup,:,l))*ep_e(ij+u_lup,:) )
1003            u(ij+u_ldown,l) = u(ij+u_ldown,l) + dtphy*sum( 0.5*(duc(ij,:,l) + duc(ij+t_ldown,:,l))*ep_e(ij+u_ldown,:) )
1004          ENDDO
1005        ENDDO
1006      ENDDO         
1007
1008      DO l=ll_begin,ll_end
1009        DO j=jj_begin,jj_end
1010          DO i=ii_begin,ii_end
1011            ij=(j-1)*iim+i
1012            Temp(ij,l)=Temp(ij,l)+ dtphy * dTemp(ij,l)
1013          ENDDO
1014        ENDDO
1015      ENDDO         
1016     
1017      DO iq=1,nqtot
1018        DO l=ll_begin,ll_end
1019          DO j=jj_begin,jj_end
1020            DO i=ii_begin,ii_end
1021              ij=(j-1)*iim+i
1022              q(ij,l,iq)=q(ij,l,iq)+ dtphy * dq(ij,l,iq)
1023            ENDDO
1024          ENDDO
1025        ENDDO
1026      ENDDO
1027
1028!$OMP BARRIER
1029     
1030     IF (is_omp_first_level) THEN
1031       DO j=jj_begin,jj_end
1032         DO i=ii_begin,ii_end
1033           ij=(j-1)*iim+i
1034           ps(ij)=ps(ij)+ dtphy * dps(ij)
1035          ENDDO
1036       ENDDO
1037     ENDIF
1038
1039!     CALL compute_temperature2theta_rhodz(ps,Temp,theta_rhodz,0)
1040
1041! compute pression
1042!$OMP BARRIER
1043      DO    l    = ll_begin,ll_endp1
1044        DO j=jj_begin,jj_end
1045          DO i=ii_begin,ii_end
1046            ij=(j-1)*iim+i
1047            p(ij,l) = ap(l) + bp(l) * ps(ij)
1048          ENDDO
1049        ENDDO
1050      ENDDO
1051
1052!$OMP BARRIER
1053
1054! compute exner
1055       
1056       IF (is_omp_first_level) THEN
1057         DO j=jj_begin,jj_end
1058            DO i=ii_begin,ii_end
1059               ij=(j-1)*iim+i
1060               pks(ij) = cpp * ( ps(ij)/preff ) ** kappa
1061            ENDDO
1062         ENDDO
1063       ENDIF
1064
1065       ! 3D : pk
1066       DO l = ll_begin,ll_end
1067          DO j=jj_begin,jj_end
1068             DO i=ii_begin,ii_end
1069                ij=(j-1)*iim+i
1070                pk(ij,l) = cpp * ((.5/preff)*(p(ij,l)+p(ij,l+1))) ** kappa
1071             ENDDO
1072          ENDDO
1073       ENDDO
1074
1075!$OMP BARRIER
1076
1077!   compute theta, temperature and pression at layer
1078    DO    l    = ll_begin, ll_end
1079      DO j=jj_begin,jj_end
1080        DO i=ii_begin,ii_end
1081          ij=(j-1)*iim+i
1082          theta_rhodz(ij,l,1) = temp(ij,l) * ((p(ij,l)-p(ij,l+1))/g) / (pk(ij,l) / cpp )
1083        ENDDO
1084      ENDDO
1085    ENDDO
1086   
1087    END SUBROUTINE grid_physics_to_icosa
1088
1089
1090
1091  END SUBROUTINE physics
1092
1093
1094
1095
1096
1097END MODULE interface_icosa_lmdz_mod
Note: See TracBrowser for help on using the repository browser.