source: trunk/LMDZ.GENERIC/libf/phystd/init_phys_lmdz.F90 @ 1330

Last change on this file since 1330 was 1216, checked in by emillour, 11 years ago

Generic model:
Major cleanup, in order to ease the use of LMDZ.GENERIC with (parallel) dynamics
in LMDZ.COMMON: (NB: this will break LMDZ.UNIVERSAL, which should be thrashed
in the near future)

  • Updated makegcm_* scripts (and makdim) and added the "-full" (to enforce full recomputation of the model) option
  • In dyn3d: converted control.h to module control_mod.F90 and converted iniadvtrac.F to module infotrac.F90
  • Added module mod_const_mpi.F90 in dyn3d (not used in serial mode)
  • Rearanged input/outputs routines everywhere to handle serial/MPI cases. physdem.F => phyredem.F90 , phyetat0.F => phyetat0.F90 ; all read/write routines for startfi files are gathered in module iostart.F90
  • added parallelism related routines init_phys_lmdz.F90, comgeomphy.F90, dimphy.F90, iniphysiq.F90, mod_grid_phy_lmdz.F90, mod_phys_lmdz_mpi_data.F90, mod_phys_lmdz_mpi_transfert.F90, mod_phys_lmdz_omp_data.F90, mod_phys_lmdz_omp_transfert.F90, mod_phys_lmdz_para.F90, mod_phys_lmdz_transfert_para.F90 in phymars and mod_const_mpi.F90 in dyn3d (for compliance with parallelism)
  • added created generic routines 'planetwide_maxval' and 'planetwide_minval', in module "planetwide_mod", that enable obtaining the max and min of a field over the whole planet. This should be further imroved with computation of means (possibly area weighed), etc.

EM

File size: 685 bytes
Line 
1!
2! $Id$
3!
4SUBROUTINE init_phys_lmdz(iim,jjp1,llm,nb_proc,distrib)
5  USE mod_phys_lmdz_omp_data, only: klon_omp
6  USE mod_grid_phy_lmdz, only: nbp_lev
7  USE mod_phys_lmdz_para, only: init_phys_lmdz_para
8  USE mod_grid_phy_lmdz, only: init_grid_phy_lmdz
9  USE dimphy, ONLY : init_dimphy
10
11  IMPLICIT NONE
12 
13    INTEGER,INTENT(in) :: iim
14    INTEGER,INTENT(in) :: jjp1
15    INTEGER,INTENT(in) :: llm
16    INTEGER,INTENT(in) :: nb_proc
17    INTEGER,INTENT(in) :: distrib(0:nb_proc-1)
18
19
20    CALL init_grid_phy_lmdz(iim,jjp1,llm)
21    CALL init_phys_lmdz_para(iim,jjp1,nb_proc,distrib)
22!$OMP PARALLEL
23    CALL init_dimphy(klon_omp,nbp_lev)
24
25!$OMP END PARALLEL
26 
27END SUBROUTINE init_phys_lmdz 
Note: See TracBrowser for help on using the repository browser.