Ignore:
Timestamp:
Jul 22, 2014, 12:51:23 PM (10 years ago)
Author:
lguez
Message:

Replaced 360 in calbeta_clim by length of current year according to
chosen calendar. Length of current year is given by
ioget_year_len. Since we already need this for ozone, moved the call
to ioget_year_len from physiq to phys_cal_mod and created variable
year_len of module phys_cal_mod.

Control the output from minmaxqfi.

Non-ASCII characters in comments are not always rendered properly and
they risk being lost. See revision 1740.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/phylmd/minmaxqfi.F90

    r1907 r2098  
    1414  INTEGER,DIMENSION(klon)     :: jadrs
    1515  INTEGER                     :: i, jbad, k
     16
     17  include "iniprint.h"
    1618 
    1719  DO k = 1, klev
     
    2426     ENDDO
    2527     IF (jbad.GT.0) THEN
    26         WRITE(*,*)comment
    27         DO i = 1, jbad
    28            WRITE(*,*) "i,k,q=", jadrs(i),k,zq(jadrs(i),k)
    29         ENDDO
     28        WRITE(*,*)comment, "k = ", k, "jbad > 0"
     29        if (prt_level >= 1) then
     30           DO i = 1, jbad
     31              WRITE(*,*) "i,q=", jadrs(i), zq(jadrs(i),k)
     32           ENDDO
     33        end if
    3034     ENDIF
    3135  ENDDO
Note: See TracChangeset for help on using the changeset viewer.