Changeset 2641 for LMDZ5/branches/testing/libf/phylmd/add_phys_tend.F90
- Timestamp:
- Sep 29, 2016, 11:26:46 PM (8 years ago)
- Location:
- LMDZ5/branches/testing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/testing
- Property svn:mergeinfo changed
/LMDZ5/trunk merged: 2596-2640
- Property svn:mergeinfo changed
-
LMDZ5/branches/testing/libf/phylmd/add_phys_tend.F90
r2435 r2641 2 2 ! $Id$ 3 3 ! 4 SUBROUTINE add_phys_tend (zdu,zdv,zdt,zdq,zdql,zdqi,paprs,text,abortphy )4 SUBROUTINE add_phys_tend (zdu,zdv,zdt,zdq,zdql,zdqi,paprs,text,abortphy,flag_inhib_tend) 5 5 !====================================================================== 6 6 ! Ajoute les tendances des variables physiques aux variables … … 20 20 USE geometry_mod, ONLY: longitude_deg, latitude_deg 21 21 USE print_control_mod, ONLY: prt_level 22 USE cmp_seri_mod 22 23 IMPLICIT none 23 24 include "YOMCST.h" … … 31 32 CHARACTER*(*) text 32 33 INTEGER abortphy 34 INTEGER flag_inhib_tend ! if flag_inhib_tend != 0, tendencies are not added 33 35 34 36 ! Local : … … 55 57 ! Initialisations 56 58 57 IF (abortphy==1) RETURN ! on n ajoute pas les tendance si le modele 59 IF (prt_level >= 5) then 60 write (*,*) "In add_phys_tend, after ",text 61 call flush 62 end if 63 64 ! if flag_inhib_tend != 0, tendencies are not added 65 IF (flag_inhib_tend /= 0) then 66 ! If requiered, diagnostics are shown 67 IF (flag_inhib_tend > 0) then 68 ! print some diagnostics if xxx_seri have changed 69 call cmp_seri(flag_inhib_tend,text) 70 END IF 71 RETURN ! on n ajoute pas les tendance 72 END IF 73 74 IF (abortphy==1) RETURN ! on n ajoute pas les tendance si le modele 58 75 ! a deja plante. 59 76 … … 259 276 260 277 261 262 END 278 RETURN 279 END SUBROUTINE add_phys_tend
Note: See TracChangeset
for help on using the changeset viewer.