Ignore:
Timestamp:
07/22/14 16:00:02 (10 years ago)
Author:
ymipsl
Message:
  • One call for initialize physics from dynamico
  • mpi_root renamed into mpi_master due to conflict with an existaing symbol from the mpi library

==> mpi_root => mpi_master, is_mpi_root => is_mpi_master, is_omp_root => is_omp_master

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/branches/SATURN_DYNAMICO/LMDZ.COMMON/libf/phystd/writediagsoil.F90

    r227 r245  
    1414use comsoil_h, only: nsoilmx 
    1515use control_mod, only: ecritphy, day_step, iphysiq 
    16 use mod_phys_lmdz_para, only : is_mpi_root, is_master, gather 
     16use mod_phys_lmdz_para, only : is_mpi_master, is_master, gather 
    1717use mod_grid_phy_lmdz, only : klon_glo, Grid1Dto2D_glo 
    1818 
     
    145145  call Gather(px,dx3_glop) 
    146146!$OMP MASTER 
    147   if (is_mpi_root) then 
     147  if (is_mpi_master) then 
    148148    call Grid1Dto2D_glo(dx3_glop,dx3_glo) 
    149149    ! copy dx3_glo() to dx3(:) and add redundant longitude 
     
    220220  call Gather(px2,dx2_glop) 
    221221!$OMP MASTER 
    222   if (is_mpi_root) then 
     222  if (is_mpi_master) then 
    223223    call Grid1Dto2D_glo(dx2_glop,dx2_glo) 
    224224    ! copy dx3_glo() to dx3(:) and add redundant longitude 
Note: See TracChangeset for help on using the changeset viewer.