- Timestamp:
- Sep 16, 2015, 2:50:44 PM (9 years ago)
- Location:
- LMDZ5/trunk/libf
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dyn3d_common/infotrac.F90
r2270 r2362 196 196 nqo=2 197 197 ENDIF 198 IF (nqo /= 2 . OR. nqo /= 3 ) THEN198 IF (nqo /= 2 .AND. nqo /= 3 ) THEN 199 199 WRITE(lunout,*) trim(modname),': nqo=',nqo, ' is not allowded. Only 2 or 3 water phases allowed' 200 200 CALL abort_gcm('infotrac_init','Bad number of water phases',1) … … 384 384 #endif 385 385 tnom_0(1)='H2Ov' 386 tnom_transp(1) = 'air' 386 387 tnom_0(2)='H2Ol' 387 IF (nqo == 3) tnom_0(3)='H2Oi' !! jyg 388 tnom_transp(2) = 'air' 389 IF (nqo == 3) then 390 tnom_0(3)='H2Oi' !! jyg 391 tnom_transp(3) = 'air' 392 endif 388 393 389 394 !jyg< 390 395 DO iq = nqo+1, nqtrue 391 396 tnom_0(iq)=solsym(iq-nqo) 397 tnom_transp(iq) = 'air' 392 398 END DO 393 399 !! DO iq =3,nqtrue -
LMDZ5/trunk/libf/dyn3dmem/gcm.F90
r2351 r2362 22 22 USE indice_sol_mod 23 23 USE mod_phys_lmdz_omp_data, ONLY: klon_omp 24 USE mod_grid_phy_lmdz, ONLY : klon_glo 24 25 #endif 25 26 -
LMDZ5/trunk/libf/misc/wxios.F90
r2271 r2362 191 191 CALL xios_set_context_attr_hdl(g_ctx, calendar_type= "NoLeap") 192 192 IF (prt_level >= 10) WRITE(lunout,*) 'wxios_set_cal: Calendrier terrestre a 365 jours/an' 193 CASE(' earth_366d')193 CASE('gregorian') 194 194 CALL xios_set_context_attr_hdl(g_ctx, calendar_type= "Gregorian") 195 195 IF (prt_level >= 10) WRITE(lunout,*) 'wxios_set_cal: Calendrier gregorien'
Note: See TracChangeset
for help on using the changeset viewer.