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/writediagfi.F

    r227 r245  
    4141      use surfdat_h, only: phisfi 
    4242      use control_mod, only: ecritphy, day_step, iphysiq 
    43       USE mod_phys_lmdz_para, only : is_parallel, is_mpi_root, 
     43      USE mod_phys_lmdz_para, only : is_parallel, is_mpi_master, 
    4444     &                               is_master, gather 
    4545      USE mod_grid_phy_lmdz, only : klon_glo, Grid1Dto2D_glo 
     
    296296          call Gather(px,dx3_glop) 
    297297!$OMP MASTER 
    298           if (is_mpi_root) then 
     298          if (is_mpi_master) then 
    299299            call Grid1Dto2D_glo(dx3_glop,dx3_glo) 
    300300            ! copy dx3_glo() to dx3(:) and add redundant longitude 
     
    380380          call Gather(px2,dx2_glop) 
    381381!$OMP MASTER 
    382           if (is_mpi_root) then 
     382          if (is_mpi_master) then 
    383383            call Grid1Dto2D_glo(dx2_glop,dx2_glo) 
    384384            ! copy dx2_glo() to dx2(:) and add redundant longitude 
Note: See TracChangeset for help on using the changeset viewer.