Changeset 2772
- Timestamp:
- Jan 24, 2017, 5:25:04 PM (8 years ago)
- Location:
- LMDZ5/trunk/libf/phylmd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/phylmd/cdrag.F90
-
Property
svn:keywords
set to
Id
r2460 r2772 1 1 ! 2 !$Id : cdrag.F90 ???? 2015-??-?? ??:??:??Z ?$2 !$Id$ 3 3 ! 4 4 SUBROUTINE cdrag( knon, nsrf, & … … 9 9 USE dimphy 10 10 USE indice_sol_mod 11 USE print_control_mod, ONLY: lunout 11 USE print_control_mod, ONLY: lunout, prt_level 12 12 IMPLICIT NONE 13 13 ! ================================================================= c … … 139 139 IF (qsurf(i).LT.0.0) ng_qsurf = ng_qsurf + 1 140 140 ENDDO 141 IF (ng_q1.GT.0 ) THEN141 IF (ng_q1.GT.0 .and. prt_level > 5) THEN 142 142 WRITE(lunout,*)" *** Warning: Negative q1(humidity at 1st level) values in cdrag.F90 !" 143 143 WRITE(lunout,*)" The total number of the grids is: ", ng_q1 … … 146 146 ! CALL abort_physic(modname,abort_message,1) 147 147 ENDIF 148 IF (ng_qsurf.GT.0 ) THEN148 IF (ng_qsurf.GT.0 .and. prt_level > 5) THEN 149 149 WRITE(lunout,*)" *** Warning: Negative qsurf(humidity at surface) values in cdrag.F90 !" 150 150 WRITE(lunout,*)" The total number of the grids is: ", ng_qsurf -
Property
svn:keywords
set to
-
LMDZ5/trunk/libf/phylmd/stratosphere_mask.F90
-
Property
svn:keywords
set to
Id
r2715 r2772 1 ! 2 ! $Id$ 3 ! 1 4 SUBROUTINE stratosphere_mask(t_seri, pplay, xlat) 2 5 … … 31 34 USE phys_local_var_mod, ONLY: p_tropopause 32 35 #endif 36 USE print_control_mod, ONLY: lunout, prt_level 33 37 34 38 IMPLICIT NONE … … 98 102 #endif 99 103 100 IF (ifil.gt.0 ) THEN101 print *,'Tropopause: number of undetermined values =', ifil104 IF (ifil.gt.0 .and. prl_level >5) THEN 105 write(lunout,*)'Tropopause: number of undetermined values =', ifil 102 106 ENDIF 103 107 -
Property
svn:keywords
set to
Note: See TracChangeset
for help on using the changeset viewer.