Changeset 2974
- Timestamp:
- Jul 31, 2017, 4:10:16 PM (7 years ago)
- Location:
- LMDZ5/branches/IPSLCM6.0.12/libf/phylmd
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/IPSLCM6.0.12/libf/phylmd/clesphys.h
r2952 r2974 91 91 LOGICAL :: adjust_tropopause 92 92 LOGICAL :: ok_daily_climoz 93 ! flag to bypass or not the phytrac module 94 INTEGER :: iflag_phytrac 93 95 94 96 COMMON/clesphys/ & … … 137 139 & , iflag_ice_thermo, ok_gwd_rando, NSW, iflag_albedo & 138 140 & , ok_chlorophyll,ok_conserv_q, adjust_tropopause & 139 & , ok_daily_climoz, ok_all_xml 141 & , ok_daily_climoz, ok_all_xml & 142 & , iflag_phytrac 140 143 141 144 save /clesphys/ -
LMDZ5/branches/IPSLCM6.0.12/libf/phylmd/phys_output_write_mod.F90
r2958 r2974 1901 1901 #endif 1902 1902 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 1903 IF (iflag_phytrac == 1 ) then 1903 1904 IF (nqtot.GE.nqo+1) THEN 1904 1905 DO iq=nqo+1, nqtot … … 1931 1932 ENDDO 1932 1933 ENDIF 1934 ENDIF !(iflag_phytrac==1) 1935 1933 1936 1934 1937 IF (.NOT.vars_defined) THEN -
LMDZ5/branches/IPSLCM6.0.12/libf/phylmd/physiq_mod.F90
r2952 r2974 1238 1238 fl_cor_ebil = 0 ! by default, no correction to ensure energy conservation 1239 1239 CALL getin_p('fl_cor_ebil',fl_cor_ebil) 1240 iflag_phytrac = 0 ! by default we do not want to call phytrac 1241 CALL getin_p('iflag_phytrac',iflag_phytrac) 1240 1242 ENDIF 1241 1243 … … 4260 4262 ENDIF 4261 4263 4264 IF (iflag_phytrac == 1 ) THEN 4265 4262 4266 #ifdef CPP_Dust 4263 4267 CALL phytracr_spl ( debut,lafin , jD_cur,jH_cur,iflag_con, & ! I … … 4303 4307 tr_seri) 4304 4308 #endif 4309 ENDIF ! (iflag_phytrac=1) 4305 4310 4306 4311 IF (offline) THEN
Note: See TracChangeset
for help on using the changeset viewer.