source: LMDZ6/trunk/libf/dynphy_lonlat/phylmd/iniphysiq_mod.F90 @ 5272

Last change on this file since 5272 was 5272, checked in by abarral, 8 weeks ago

Turn paramet.h into a module

  • 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
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 6.4 KB
RevLine 
[2347]1!
[1403]2! $Id: iniphysiq_mod.F90 5272 2024-10-24 15:53:15Z abarral $
[2347]3!
4MODULE iniphysiq_mod
[1671]5
[2347]6CONTAINS
[1671]7
[2351]8SUBROUTINE iniphysiq(ii,jj,nlayer, &
9                     nbp, communicator, &
10                     punjours, pdayref,ptimestep, &
[2656]11                     rlatudyn,rlatvdyn,rlonudyn,rlonvdyn,airedyn,cudyn,cvdyn, &
[2225]12                     prad,pg,pr,pcpp,iflag_phys)
[2351]13  USE dimphy, ONLY: init_dimphy
[2588]14  USE inigeomphy_mod, ONLY: inigeomphy
[2608]15  USE mod_grid_phy_lmdz, ONLY: nbp_lon,nbp_lat,nbp_lev,klon_glo ! number of atmospheric columns (on full grid)
[2588]16  USE mod_phys_lmdz_para, ONLY: klon_omp ! number of columns (on local omp grid)
[2315]17  USE vertical_layers_mod, ONLY : init_vertical_layers
[4389]18  USE infotrac, ONLY: nbtr, type_trac
[4056]19  USE infotrac_phy, ONLY: nbtr_bin, nbtr_sulgas, id_OCS_strat, &
[3677]20                      id_SO2_strat, id_H2SO4_strat, id_BIN01_strat
[5252]21  USE lmdz_reprobus_wrappers, ONLY : Init_chem_rep_phys
[3666]22#ifdef CPP_PARA
23  USE parallel_lmdz, ONLY : mpi_size, mpi_rank
24  USE bands, ONLY : distrib_phys
[2351]25#endif
[3666]26  USE mod_phys_lmdz_omp_data, ONLY: klon_omp
[4358]27  USE control_mod, ONLY: dayref,anneeref,day_step,nday,offline, iphysiq
[2311]28  USE inifis_mod, ONLY: inifis
[2343]29  USE time_phylmdz_mod, ONLY: init_time
[3579]30  USE temps_mod, ONLY: annee_ref, day_ini, day_ref, start_time, calend, year_len
[2320]31  USE infotrac_phy, ONLY: init_infotrac_phy
[2343]32  USE phystokenc_mod, ONLY: init_phystokenc
[1992]33  USE phyaqua_mod, ONLY: iniaqua
[3435]34  USE comconst_mod, ONLY: omeg, rad
[2372]35  USE indice_sol_mod, ONLY: nbsrf, is_oce, is_sic, is_ter, is_lic
[2457]36#ifdef CPP_PARA
37  USE parallel_lmdz, ONLY : mpi_size, mpi_rank
[2372]38  USE bands, ONLY : distrib_phys
[2457]39#endif
[2372]40  USE mod_phys_lmdz_omp_data, ONLY: klon_omp
[2656]41  USE ioipsl_getin_p_mod, ONLY: getin_p
42  USE slab_heat_transp_mod, ONLY: ini_slab_transp_geom
[5252]43  USE lmdz_cppkeys_wrapper, ONLY: CPPKEY_INCA, CPPKEY_REPROBUS
[5271]44  USE dimensions_mod, ONLY: iim, jjm, llm, ndm
[5272]45USE paramet_mod_h, ONLY: iip1, iip2, iip3, jjp1, llmp1, llmp2, llmm1, kftd, ip1jm, ip1jmp1, &
46          ip1jmi1, ijp1llm, ijmllm, mvar, jcfil, jcfllm
[5271]47IMPLICIT NONE
[1671]48
[1992]49  ! =======================================================================
50  ! Initialisation of the physical constants and some positional and
51  ! geometrical arrays for the physics
52  ! =======================================================================
[1403]53
[5271]54
[5272]55
[1992]56  include "iniprint.h"
[2343]57  include "tracstoke.h"
[2656]58  include "comgeom.h"
[1992]59
60  REAL, INTENT (IN) :: prad ! radius of the planet (m)
61  REAL, INTENT (IN) :: pg ! gravitational acceleration (m/s2)
62  REAL, INTENT (IN) :: pr ! ! reduced gas constant R/mu
63  REAL, INTENT (IN) :: pcpp ! specific heat Cp
64  REAL, INTENT (IN) :: punjours ! length (in s) of a standard day
65  INTEGER, INTENT (IN) :: nlayer ! number of atmospheric layers
[2315]66  INTEGER, INTENT (IN) :: ii ! number of atmospheric columns along longitudes
67  INTEGER, INTENT (IN) :: jj ! number of atompsheric columns along latitudes
[2351]68  INTEGER, INTENT(IN) :: nbp ! number of physics columns for this MPI process
69  INTEGER, INTENT(IN) :: communicator ! MPI communicator
[2656]70  REAL, INTENT (IN) :: rlatudyn(jj+1) ! latitudes of the physics grid
71  REAL, INTENT (IN) :: rlatvdyn(jj) ! latitude boundaries of the physics grid
72  REAL, INTENT (IN) :: rlonvdyn(ii+1) ! longitudes of the physics grid
73  REAL, INTENT (IN) :: rlonudyn(ii+1) ! longitude boundaries of the physics grid
74  REAL, INTENT (IN) :: airedyn(ii+1,jj+1) ! area of the dynamics grid (m2)
75  REAL, INTENT (IN) :: cudyn((ii+1)*(jj+1)) ! cu coeff. (u_covariant = cu * u)
76  REAL, INTENT (IN) :: cvdyn((ii+1)*jj) ! cv coeff. (v_covariant = cv * v)
[1992]77  INTEGER, INTENT (IN) :: pdayref ! reference day of for the simulation
78  REAL, INTENT (IN) :: ptimestep !physics time step (s)
79  INTEGER, INTENT (IN) :: iflag_phys ! type of physics to be called
80
81  INTEGER :: ibegin, iend, offset
[2351]82  INTEGER :: i,j,k
[1992]83  CHARACTER (LEN=20) :: modname = 'iniphysiq'
84  CHARACTER (LEN=80) :: abort_message
[2656]85 
86  LOGICAL :: slab_hdiff
87  INTEGER :: slab_ekman
88  CHARACTER (LEN = 6) :: type_ocean
[1992]89
[2457]90#ifndef CPP_PARA
91  INTEGER,PARAMETER :: mpi_rank=0
92  INTEGER, PARAMETER :: mpi_size = 1
93  INTEGER :: distrib_phys(mpi_rank:mpi_rank)=(jjm-1)*iim+2
94#endif
95
[2588]96  ! --> initialize physics distribution, global fields and geometry
97  ! (i.e. things in phy_common or dynphy_lonlat)
98  CALL inigeomphy(ii,jj,nlayer, &
99               nbp, communicator, &
[2656]100               rlatudyn,rlatvdyn, &
101               rlonudyn,rlonvdyn, &
102               airedyn,cudyn,cvdyn)
[2346]103
[2588]104  ! --> now initialize things specific to the phylmd physics package
[2351]105 
[2601]106!!$OMP PARALLEL DEFAULT(SHARED) COPYIN(/temps/)
107!       Copy all threadprivate variables in temps_mod
[4103]108!$OMP PARALLEL DEFAULT(SHARED) COPYIN(annee_ref,day_ini,day_ref,start_time)
[2351]109
[2311]110  ! Initialize physical constants in physics:
111  CALL inifis(punjours,prad,pg,pr,pcpp)
[2351]112
[2343]113  CALL init_time(annee_ref,day_ref,day_ini,start_time,nday,ptimestep)
114
[2354]115  ! Initialize dimphy module (unless in 1D where it has already been done)
[3435]116!  IF (klon_glo>1) CALL Init_dimphy(klon_omp,nlayer)
[2351]117
[2343]118  ! Copy over "offline" settings
119  CALL init_phystokenc(offline,istphy)
120
[2656]121  ! Initialization for slab heat transport
122  type_ocean="force"
123  CALL getin_p('type_ocean',type_ocean)
124  slab_hdiff=.FALSE.
125  CALL getin_p('slab_hdiff',slab_hdiff)
126  slab_ekman=0
127  CALL getin_p('slab_ekman',slab_ekman)
128  IF ((type_ocean=='slab').AND.(slab_hdiff.OR.(slab_ekman.GT.0))) THEN
129     CALL ini_slab_transp_geom(ip1jm,ip1jmp1,unsairez,fext,unsaire,&
130                                  cu,cuvsurcv,cv,cvusurcu, &
131                                  aire,apoln,apols, &
[3435]132                                  aireu,airev,rlatvdyn,rad,omeg)
[2656]133  END IF
134
[2320]135  ! Initialize tracer names, numbers, etc. for physics
[4325]136  CALL init_infotrac_phy
[2320]137
[2351]138  ! Initializations for Reprobus
[4389]139  IF (type_trac == 'repr') THEN
[5252]140IF (CPPKEY_REPROBUS) THEN
[3666]141    call Init_chem_rep_phys(klon_omp,nlayer)
142    call init_reprobus_para( &
143          nbp_lon,nbp_lat,nbp_lev,klon_glo,mpi_size, &
144          distrib_phys,communicator)
[5252]145END IF
[2351]146  ENDIF
[2372]147!$OMP END PARALLEL
[2225]148
[4127]149
[4389]150  IF (type_trac == 'repr') THEN
[5252]151IF (CPPKEY_REPROBUS) THEN
[3666]152    call init_reprobus_para( &
153          nbp_lon,nbp_lat,nbp_lev,klon_glo,mpi_size, &
154          distrib_phys,communicator)
[5252]155END IF
[3666]156  ENDIF
[2372]157
[2601]158!!$OMP PARALLEL DEFAULT(SHARED) COPYIN(/temps/)
159!$OMP PARALLEL DEFAULT(SHARED)
[2311]160  ! Additional initializations for aquaplanets
[1992]161  IF (iflag_phys>=100) THEN
[3579]162    CALL iniaqua(klon_omp,year_len,iflag_phys)
[1992]163  END IF
[2372]164
[4389]165  IF (ANY(type_trac == ['inca','inco'])) THEN
[5251]166IF (CPPKEY_INCA) THEN
[4127]167     CALL init_inca_dim_reg(nbp_lon, nbp_lat - 1, &
168          rlonudyn, rlatudyn, rlonvdyn, rlatvdyn)
[5251]169END IF
[4046]170  END IF
[4127]171
[2225]172!$OMP END PARALLEL
[1992]173
174END SUBROUTINE iniphysiq
[2347]175
176END MODULE iniphysiq_mod
Note: See TracBrowser for help on using the repository browser.