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

    r222 r298  
    44      use radinc_h, only: naerkind 
    55      use aerosol_mod 
     6      use mod_phys_lmdz_para, only : is_master 
    67 
    78      IMPLICIT NONE 
     
    2627         iaero_co2=ia 
    2728      endif 
    28       write(*,*) '--- CO2 aerosol = ', iaero_co2 
     29      if (is_master) write(*,*) '--- CO2 aerosol = ', iaero_co2 
    2930  
    3031      if (aeroh2o) then 
     
    3233         iaero_h2o=ia 
    3334      endif 
    34       write(*,*) '--- H2O aerosol = ', iaero_h2o 
     35      if (is_master) write(*,*) '--- H2O aerosol = ', iaero_h2o 
    3536 
    3637      if (dusttau.gt.0) then 
     
    3839         iaero_dust=ia 
    3940      endif 
    40       write(*,*) '--- Dust aerosol = ', iaero_dust 
     41      if (is_master) write(*,*) '--- Dust aerosol = ', iaero_dust 
    4142 
    4243      if (aeroh2so4) then 
     
    4445         iaero_h2so4=ia 
    4546      endif 
    46       write(*,*) '--- H2SO4 aerosol = ', iaero_h2so4 
     47      if (is_master) write(*,*) '--- H2SO4 aerosol = ', iaero_h2so4 
    4748       
    4849      if (aeroback2lay) then 
     
    5051         iaero_back2lay=ia 
    5152      endif 
    52       write(*,*) '--- Two-layer aerosol = ', iaero_back2lay 
     53      if (is_master) write(*,*) '--- Two-layer aerosol = ', 
     54     &           iaero_back2lay 
    5355 
    54       write(*,*) '=== Number of aerosols= ', ia 
     56      if (is_master) write(*,*) '=== Number of aerosols= ', ia 
    5557       
    5658! For the zero aerosol case, we currently make a dummy co2 aerosol which is zero everywhere. 
Note: See TracChangeset for help on using the changeset viewer.