Changeset 176 in lmdz_wrf


Ignore:
Timestamp:
Oct 8, 2014, 11:23:46 AM (10 years ago)
Author:
lfita
Message:

Fixing not output of 'EVAP' in wrfout
Adding evap checks
Increasing threshold for the checking of airephy

Location:
trunk/WRFV3/lmdz
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WRFV3/lmdz/diagphy_mod.F90

    r142 r176  
    166166        IF (airetot .NE. airetot .OR. ABS(airetot) > largest*10.e6) THEN
    167167          varname = 'airephy'
    168           CALL check_var(fname, varname, airephy, klon, largest*10.e6, .FALSE.)
     168          CALL check_var(fname, varname, airephy, klon, largest*10.e12, .FALSE.)
    169169        END IF
    170170        PRINT *,'    stops= ',stops
  • trunk/WRFV3/lmdz/physiq.F90

    r142 r176  
    22062206
    22072207      PRINT *,'  Lluis before pbl_surface qsol: ',qsol(llp),    &
    2208         ' rmu0: ',rmu0(llp),' jH_cur: ',jH_cur
     2208        ' rmu0: ',rmu0(llp),' jH_cur: ',jH_cur,' evap: ',evap(llp)
    22092209
    22102210      CALL pbl_surface(                                                              &
     
    22332233
    22342234      PRINT *,'  Lluis after pbl_surface qsol: ',qsol(llp),    &
    2235         ' rmu0: ',rmu0(llp),' jH_cur: ',jH_cur
     2235        ' rmu0: ',rmu0(llp),' jH_cur: ',jH_cur,' evap: ',evap(llp)
    22362236
    22372237!-----------------------------------------------------------------------------------------
  • trunk/WRFV3/lmdz/wrf_lmdz_mod.F90

    r1 r176  
    24992499        pwrf_grid%ldtsvdfg(ix,iy) = d_ts(ixy,is_lic)
    25002500        pwrf_grid%ldtsvdfi(ix,iy) = d_ts(ixy,is_sic)
    2501         pwrf_grid%levap(ix,iy) = fevap(ixy,1)
     2501! L. Fita, October 2014. with fevap there is not evaporation!
     2502!        pwrf_grid%levap(ix,iy) = fevap(ixy,1)
     2503        pwrf_grid%levap(ix,iy) = evap(ixy)
    25022504        pwrf_grid%levap_ter(ix,iy) = fevap(ixy,1)
    25032505        pwrf_grid%levap_lic(ix,iy) = fevap(ixy,2)
Note: See TracChangeset for help on using the changeset viewer.