Skip to content

Commit

Permalink
Updates to radiation, cloud, and land processes for improved surface …
Browse files Browse the repository at this point in the history
…temperature and radiative flux biases (#903)

* fixes for several issues identified in the HRv4 and UFS/Noah-MP models: radiative flux biases, soil thermal conductivity, and evapotranspiration improvements
  • Loading branch information
rhaesung authored Feb 3, 2025
1 parent c2eb454 commit 2c902a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ccpp/driver/GFS_diagnostics.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1411,7 +1411,7 @@ subroutine GFS_externaldiag_populate (ExtDiag, Model, Statein, Stateout, Sfcprop
ExtDiag(idx)%axes = 2
ExtDiag(idx)%name = 'pevpr_ave'
ExtDiag(idx)%desc = 'averaged potential evaporation rate'
ExtDiag(idx)%unit = 'W/m**2'
ExtDiag(idx)%unit = 'mm/s'
ExtDiag(idx)%mod_name = 'gfs_phys'
ExtDiag(idx)%time_avg = .TRUE.
allocate (ExtDiag(idx)%data(nblks))
Expand Down Expand Up @@ -2225,7 +2225,7 @@ subroutine GFS_externaldiag_populate (ExtDiag, Model, Statein, Stateout, Sfcprop
ExtDiag(idx)%axes = 2
ExtDiag(idx)%name = 'pevpr'
ExtDiag(idx)%desc = 'instantaneous surface potential evaporation'
ExtDiag(idx)%unit = 'W/m**2'
ExtDiag(idx)%unit = 'mm/s'
ExtDiag(idx)%mod_name = 'gfs_phys'
allocate (ExtDiag(idx)%data(nblks))
do nb = 1,nblks
Expand Down

0 comments on commit 2c902a6

Please sign in to comment.