Changeset 928 for LMDZ4/trunk/libf/phylmd
- Timestamp:
- Mar 18, 2008, 6:04:15 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/trunk/libf/phylmd/phytrac.F
r864 r928 642 642 c====================================================================== 643 643 c print*,'Avant convection' 644 cdo it=1,nqmax645 cWRITE(itn,'(i2)') it644 do it=1,nqmax 645 WRITE(itn,'(i2)') it 646 646 c call diagtracphy(tr_seri(:,:,it),paprs,'Avant conv'//itn) 647 cenddo647 enddo 648 648 649 649 if (convection) then … … 654 654 IF ( conv_flg(it) == 0 ) CYCLE 655 655 #endif 656 if (iflag_con.eq.2) then 656 if (iflag_con.lt.2) then 657 d_tr_cv=0. 658 else if (iflag_con.eq.2) then 657 659 c tiedke 658 660 CALL nflxtr(pdtphys, pmfu, pmfd, pen_u, pde_u, pen_d, pde_d, 659 661 . pplay, paprs, tr_seri(1,1,it), d_tr_cv(1,1,it)) 660 else if (iflag_con.eq.3) then662 else 661 663 c KE 662 664 call cvltr(pdtphys, da, phi, mp, paprs,pplay, tr_seri(1,1,it), … … 664 666 endif 665 667 666 DO k = 1, nlev667 DO i = 1, klon668 DO k = 1, nlev 669 DO i = 1, klon 668 670 tr_seri(i,k,it) = tr_seri(i,k,it) + d_tr_cv(i,k,it) 669 ENDDO670 ENDDO671 ENDDO 672 ENDDO 671 673 #ifdef INCA 672 674 CALL minmaxqfi(tr_seri(1,1,it),0.,1.e33,'convection it = '
Note: See TracChangeset
for help on using the changeset viewer.