source: trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd/iniphysiq_mod.F90 @ 2785

Last change on this file since 2785 was 1682, checked in by emillour, 8 years ago

All GCMs: set things up to enable pluging physics with dynamico

  • dyn3d
  • gcm.F90 : move I/O initialization (dates) to be done before physics

initialization

  • dyn3dpar
  • gcm.F : move I/O initialization (dates) to be done before physics

initialization

  • dynphy_lonlat:
  • inigeomphy_mod.F90 : add ind_cell_glo computation and transfer

to init_geometry

  • phy_common:
  • geometry_mod.F90 : add ind_cell_glo module variable to store global

column index

  • print_control_mod.F90 : make initialization occur via init_print_control_mod

to avoid circular module dependencies

  • init_print_control_mod.F90 : added to initialize print_control_mod module

variables

  • mod_phys_lmdz_mpi_data.F90 : use print_control_mod (rather than iniprint.h)
  • mod_phys_lmdz_para.F90 : use print_control_mod (rather than iniprint.h)
  • mod_phys_lmdz_omp_data.F90 : add is_omp_master (alias of is_omp_root) module

variable and use print_control_mod (rather than
iniprint.h)

  • physics_distribution_mod.F90 : add call to init_dimphy in

init_physics_distribution

  • xios_writefield.F90 : generic routine to output field with XIOS (for debug)
  • misc:
  • handle_err_m.F90 : call abort_physic, rather than abort_gcm
  • wxios.F90 : updates to enable unstructured grids

set module variable g_ctx_name to "LMDZ"
wxios_init(): remove call to wxios_context_init
wxios_context_init(): call xios_context_initialize with COMM_LMDZ_PHY
add routine wxios_set_context() to get handle and set context to XIOS
wxios_domain_param(): change arguments and generate the domain in-place
add wxios_domain_param_unstructured(): generate domain for unstructured case

NB: access is via "domain group" (whereas it is via "domain" in

wxios_domain_param)

  • dynphy_lonlat/phy[std|mars|venus|titan]:
  • iniphysiq_mod.F90 : Remove call to init_dimphy (which is now done in

phy_common/physics_distribution_mod.F90)

EM

File size: 3.6 KB
RevLine 
[1523]1MODULE iniphysiq_mod
2
3CONTAINS
4
[1543]5subroutine iniphysiq(ii,jj,nlayer, &
6                     nbp, communicator, &
7                     punjours, pdayref,ptimestep, &
8                     rlatudyn,rlatvdyn,rlonudyn,rlonvdyn, &
9                     airedyn,cudyn,cvdyn, &
[1216]10                     prad,pg,pr,pcpp,iflag_phys)
11
[1525]12use control_mod, only: nday
[1529]13use surf_heat_transp_mod, only: ini_surf_heat_transp
[1216]14use infotrac, only : nqtot ! number of advected tracers
[1308]15use planete_mod, only: ini_planete_mod
[1422]16USE comvert_mod, ONLY: ap,bp,preff
[1524]17use inifis_mod, only: inifis
[1529]18use ioipsl_getin_p_mod, only: getin_p
[1216]19
[1564]20use inigeomphy_mod, only: inigeomphy
[1563]21use geometry_mod, only: cell_area, & ! physics grid area (m2)
22                        longitude, & ! longitudes (rad)
23                        latitude ! latitudes (rad)
24! necessary to get klon_omp
25USE mod_phys_lmdz_para, ONLY: klon_omp ! number of columns (on local omp grid)
[1573]26USE dimphy, ONLY: init_dimphy
[1563]27
[1216]28implicit none
[1308]29include "dimensions.h"
[1529]30include "paramet.h"
31include "comgeom.h"
[1395]32include "iniprint.h"
[1216]33
34real,intent(in) :: prad ! radius of the planet (m)
35real,intent(in) :: pg ! gravitational acceleration (m/s2)
36real,intent(in) :: pr ! ! reduced gas constant R/mu
37real,intent(in) :: pcpp ! specific heat Cp
38real,intent(in) :: punjours ! length (in s) of a standard day
39integer,intent(in) :: nlayer ! number of atmospheric layers
[1395]40integer,intent(in) :: ii ! number of atmospheric coulumns along longitudes
41integer,intent(in) :: jj  ! number of atompsheric columns along latitudes
[1543]42integer,intent(in) :: nbp ! number of physics columns for this MPI process
43integer,intent(in) :: communicator ! MPI communicator
[1529]44real,intent(in) :: rlatudyn(jj+1) ! latitudes of the physics grid
45real,intent(in) :: rlatvdyn(jj) ! latitude boundaries of the physics grid
46real,intent(in) :: rlonvdyn(ii+1) ! longitudes of the physics grid
47real,intent(in) :: rlonudyn(ii+1) ! longitude boundaries of the physics grid
48real,intent(in) :: airedyn(ii+1,jj+1) ! area of the dynamics grid (m2)
49real,intent(in) :: cudyn((ii+1)*(jj+1)) ! cu coeff. (u_covariant = cu * u)
50real,intent(in) :: cvdyn((ii+1)*jj) ! cv coeff. (v_covariant = cv * v)
[1216]51integer,intent(in) :: pdayref ! reference day of for the simulation
52real,intent(in) :: ptimestep !physics time step (s)
53integer,intent(in) :: iflag_phys ! type of physics to be called
54
[1529]55logical :: ok_slab_ocean
[1216]56
[1563]57  ! the common part for all planetary physics
58  !------------------------------------------
59  ! --> initialize physics distribution, global fields and geometry
[1573]60  ! (i.e. things in phy_common or dynphy_lonlat)
[1564]61  CALL inigeomphy(ii,jj,nlayer, &
[1563]62               nbp, communicator, &
63               rlatudyn,rlatvdyn, &
64               rlonudyn,rlonvdyn, &
65               airedyn,cudyn,cvdyn)
[1395]66
[1573]67  ! the distinct part for all planetary physics (ie. things in phystd)
[1563]68  !------------------------------------------
[1395]69
[1563]70!$OMP PARALLEL
[1543]71
[1563]72! copy some fundamental parameters to physics
73! and do some initializations
[1523]74
[1682]75! Initialize dimphy module => Now done in physics_distribution_mod
76! call init_dimphy(klon_omp,nlayer)
[1573]77
[1308]78! copy over preff , ap() and bp()
79call ini_planete_mod(nlayer,preff,ap,bp)
80
[1529]81! for slab ocean, copy over some arrays
82ok_slab_ocean=.false. ! default value
83call getin_p("ok_slab_ocean",ok_slab_ocean)
84if (ok_slab_ocean) then
85  call ini_surf_heat_transp(ip1jm,ip1jmp1,unsairez,fext,unsaire, &
86                            cu,cuvsurcv,cv,cvusurcu,aire,apoln,apols, &
87                            aireu,airev)
88endif
89
[1525]90call inifis(klon_omp,nlayer,nqtot,pdayref,punjours,nday,ptimestep, &
[1542]91            latitude,longitude,cell_area,prad,pg,pr,pcpp)
[1216]92
[1563]93
[1216]94!$OMP END PARALLEL
95
96end subroutine iniphysiq
[1523]97
98
99END MODULE iniphysiq_mod
Note: See TracBrowser for help on using the repository browser.