Changeset 1506 for LMDZ5


Ignore:
Timestamp:
Apr 10, 2011, 10:13:07 AM (13 years ago)
Author:
Laurent Fairhead
Message:

Encore des prints intempestifs a éliminer


Getting rid of some superfluous print statements

Location:
LMDZ5/trunk/libf/phylmd
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/phylmd/cv3_routines.F

    r1501 r1506  
    3838      CHARACTER (LEN=20) :: modname='cv3_param'
    3939      CHARACTER (LEN=80) :: abort_message
     40      LOGICAL, SAVE :: FIRST=.TRUE.
     41!$OMP THREADPRIVATE(FIRST)
     42
    4043
    4144c noff: integer limit for convection (nd-noff)
     
    100103      CLOSE(99)
    1011049999  Continue
    102       WRITE(*,*)'dpbase=',dpbase
    103       WRITE(*,*)'pbcrit=',pbcrit
    104       WRITE(*,*)'ptcrit=',ptcrit
    105       WRITE(*,*)'sigdz=',sigdz
    106       WRITE(*,*)'spfac=',spfac
     105      if (first) then
     106        WRITE(*,*)'dpbase=',dpbase
     107        WRITE(*,*)'pbcrit=',pbcrit
     108        WRITE(*,*)'ptcrit=',ptcrit
     109        WRITE(*,*)'sigdz=',sigdz
     110        WRITE(*,*)'spfac=',spfac
     111        first = .false.
     112      endif
     113
    107114
    108115      return
     
    939946      parameter(sigs=0.15)
    940947      integer flag_epKEorig
     948      LOGICAL, SAVE :: FIRST=.TRUE.
     949!$OMP THREADPRIVATE(FIRST)
    941950
    942951!=====================================================================
     
    10601069      CLOSE(99)
    106110709999  Continue
    1062       WRITE(*,*)'flag_epKEorig',flag_epKEorig
    1063       WRITE(*,*)'elcrit=',elcrit
    1064       WRITE(*,*)'tlcrit=',tlcrit
     1071      if (first) then
     1072        WRITE(*,*)'flag_epKEorig',flag_epKEorig
     1073        WRITE(*,*)'elcrit=',elcrit
     1074        WRITE(*,*)'tlcrit=',tlcrit
     1075        first=.false.
     1076      endif
    10651077cIM end: ajout fis. reglage ep
    10661078
  • LMDZ5/trunk/libf/phylmd/fisrtilp.F90

    r1492 r1506  
    2525  include "tracstoke.h"
    2626  include "fisrtilp.h"
     27  include "iniprint.h"
     28
    2729  !
    2830  ! Arguments:
     
    142144  zdelq=0.0
    143145
    144   print*,'NUAGES4 A. JAM'
     146  if (prt_level>9)write(lunout,*)'NUAGES4 A. JAM'
    145147  IF (appel1er) THEN
    146148     !
  • LMDZ5/trunk/libf/phylmd/physiq.F

    r1496 r1506  
    33553355       IF (MOD(itap,NINT(freq_cosp/dtime)).EQ.0) THEN
    33563356
    3357        print*,'freq_cosp',freq_cosp
     3357!       print*,'freq_cosp',freq_cosp
    33583358          mr_ozone=wo(:, :, 1) * dobson_u * 1e3 / zmasse
    33593359!       print*,'Dans physiq.F avant appel cosp ref_liq,ref_ice=',
Note: See TracChangeset for help on using the changeset viewer.