Changeset 1491
- Timestamp:
- Feb 23, 2011, 1:20:08 PM (14 years ago)
- Location:
- LMDZ5/branches/LMDZ5V2.0-dev/libf/phylmd
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/LMDZ5V2.0-dev/libf/phylmd/orografi_strato.F
r1403 r1491 2004 2004 2005 2005 DO 110 JK=1,NLEV 2006 ZPM1R=pplay_glo(klon_glo/2,jk)/paprs_glo(klon_glo/2 ,1)2006 ZPM1R=pplay_glo(klon_glo/2,jk)/paprs_glo(klon_glo/2+1,1) 2007 2007 IF(ZPM1R.GE.ZSIGT)THEN 2008 2008 nktopg=JK 2009 2009 ENDIF 2010 ZPM1R=pplay_glo(klon_glo/2,jk)/paprs_glo(klon_glo/2 ,1)2010 ZPM1R=pplay_glo(klon_glo/2,jk)/paprs_glo(klon_glo/2+1,1) 2011 2011 IF(ZPM1R.GE.ZTOP)THEN 2012 2012 nstra=JK -
LMDZ5/branches/LMDZ5V2.0-dev/libf/phylmd/phys_output_mod.F90
r1473 r1491 1059 1059 ! Couplage conv-CL 1060 1060 IF (iflag_con.GE.3) THEN 1061 IF (iflag_coupl .EQ.1) THEN1061 IF (iflag_coupl>=1) THEN 1062 1062 CALL histdef2d(iff,o_ale_bl%flag,o_ale_bl%name, "ALE BL", "m2/s2") 1063 1063 CALL histdef2d(iff,o_alp_bl%flag,o_alp_bl%name, "ALP BL", "m2/s2") -
LMDZ5/branches/LMDZ5V2.0-dev/libf/phylmd/phys_output_write.h
r1473 r1491 696 696 ! Couplage convection-couche limite 697 697 IF (iflag_con.GE.3) THEN 698 IF (iflag_coupl .EQ.1) THEN698 IF (iflag_coupl>=1) THEN 699 699 IF (o_ale_bl%flag(iff)<=lev_files(iff)) THEN 700 700 CALL histwrite_phy(nid_files(iff),o_ale_bl%name,itau_w,ale_bl) … … 703 703 CALL histwrite_phy(nid_files(iff),o_alp_bl%name,itau_w,alp_bl) 704 704 ENDIF 705 ENDIF !iflag_coupl .EQ.1705 ENDIF !iflag_coupl>=1 706 706 ENDIF !(iflag_con.GE.3) 707 707 -
LMDZ5/branches/LMDZ5V2.0-dev/libf/phylmd/physiq.F
r1486 r1491 2465 2465 endif 2466 2466 ! ---------------------------------------------------------------------- 2467 !IM/FH: 2011/02/23 2468 ! Couplage Thermiques/Emanuel seulement si T<0 2469 if (iflag_coupl==2) then 2470 print*,'Couplage Thermiques/Emanuel seulement si T<0' 2471 do i=1,klon 2472 if (t_seri(i,lmax_th(i))>273.) then 2473 Ale_bl(i)=0. 2474 endif 2475 enddo 2476 endif 2467 2477 2468 2478 endif … … 2840 2850 ! de la convection profonde. 2841 2851 2842 print*,'TEST SCHEMA DE NUAGES ' 2852 !IM/FH: 2011/02/23 2853 ! definition des points sur lesquels ls thermiques sont actifs 2854 print*,'TEST SCHEMA DE NUAGES DEBUG ' 2855 ptconvth(:,:)=fm_therm(:,:)>0. 2843 2856 do k=1,klev 2844 2857 do i=1,klon
Note: See TracChangeset
for help on using the changeset viewer.