Ignore:
Timestamp:
12/02/14 19:21:00 (10 years ago)
Author:
milmd
Message:

Less output messages are written. On 20000 cores it is better. In LMDZ, only master of MPI and OpenMP can write.

File:
1 edited

Legend:

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

    r227 r298  
    1515 
    1616      use datafile_mod, only: datadir 
     17      use mod_phys_lmdz_para, only : is_master 
    1718 
    1819      implicit none 
     
    6667 
    6768      if(firstcall)then ! called by sugas_corrk only 
    68          print*,'----------------------------------------------------' 
    69          print*,'Initialising H2-H2 continuum from HITRAN database...' 
     69         if (is_master) print*,'----------------------------------------------------' 
     70         if (is_master) print*,'Initialising H2-H2 continuum from HITRAN database...' 
    7071 
    7172!     1.1 Open the ASCII files 
     
    106107!$OMP BARRIER 
    107108 
    108          print*,'interpolateH2H2: At wavenumber ',wn,' cm^-1' 
    109          print*,'   temperature ',temp,' K' 
    110          print*,'   pressure ',pres,' Pa' 
     109         if (is_master) print*,'interpolateH2H2: At wavenumber ',wn,' cm^-1' 
     110         if (is_master) print*,'   temperature ',temp,' K' 
     111         if (is_master) print*,'   pressure ',pres,' Pa' 
    111112 
    112113      endif 
Note: See TracChangeset for help on using the changeset viewer.