Changeset 3489 for LMDZ6/trunk/libf/phylmd/phys_output_write_mod.F90
- Timestamp:
- Apr 26, 2019, 5:50:39 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/phys_output_write_mod.F90
r3480 r3489 249 249 250 250 USE phys_local_var_mod, ONLY: zxfluxlat, slp, ptstar, pt0, zxtsol, zt2m, & 251 zt2m_cor,zq2m_cor,zu10m_cor,zv10m_cor, zrh2m_cor, zqsat2m_cor, & 251 252 t2m_min_mon, t2m_max_mon, evap, & 252 253 l_mixmin,l_mix, & … … 665 666 CALL histwrite_phy(o_slp, slp) 666 667 CALL histwrite_phy(o_tsol, zxtsol) 667 CALL histwrite_phy(o_t2m, zt2m )668 CALL histwrite_phy(o_t2m_min, zt2m )669 CALL histwrite_phy(o_t2m_max, zt2m )668 CALL histwrite_phy(o_t2m, zt2m_cor) 669 CALL histwrite_phy(o_t2m_min, zt2m_cor) 670 CALL histwrite_phy(o_t2m_max, zt2m_cor) 670 671 CALL histwrite_phy(o_t2m_max_mon, t2m_max_mon) 671 672 CALL histwrite_phy(o_t2m_min_mon, t2m_min_mon) … … 673 674 IF (vars_defined) THEN 674 675 DO i=1, klon 675 zx_tmp_fi2d(i)=SQRT(zu10m (i)*zu10m(i)+zv10m(i)*zv10m(i))676 zx_tmp_fi2d(i)=SQRT(zu10m_cor(i)*zu10m_cor(i)+zv10m_cor(i)*zv10m_cor(i)) 676 677 ENDDO 677 678 ENDIF … … 680 681 IF (vars_defined) THEN 681 682 DO i=1, klon 682 zx_tmp_fi2d(i)=SQRT(zu10m (i)*zu10m(i)+zv10m(i)*zv10m(i))683 zx_tmp_fi2d(i)=SQRT(zu10m_cor(i)*zu10m_cor(i)+zv10m_cor(i)*zv10m_cor(i)) 683 684 ENDDO 684 685 ENDIF … … 693 694 ENDIF 694 695 CALL histwrite_phy(o_sicf, zx_tmp_fi2d) 695 CALL histwrite_phy(o_q2m, zq2m )696 CALL histwrite_phy(o_q2m, zq2m_cor) 696 697 CALL histwrite_phy(o_ustar, zustar) 697 CALL histwrite_phy(o_u10m, zu10m )698 CALL histwrite_phy(o_v10m, zv10m )698 CALL histwrite_phy(o_u10m, zu10m_cor) 699 CALL histwrite_phy(o_v10m, zv10m_cor) 699 700 700 701 IF (vars_defined) THEN … … 1330 1331 ! CALL histwrite_phy(o_rh2m_max, zx_tmp_fi2d) 1331 1332 1332 CALL histwrite_phy(o_qsat2m, qsat2m)1333 CALL histwrite_phy(o_qsat2m, zqsat2m_cor) 1333 1334 CALL histwrite_phy(o_tpot, tpot) 1334 1335 CALL histwrite_phy(o_tpote, tpote)
Note: See TracChangeset
for help on using the changeset viewer.