Skip to content

Commit

Permalink
In RUC driver changed the instantaneous runoff output to the accumula…
Browse files Browse the repository at this point in the history
…ted surface runoff.
  • Loading branch information
tanyasmirnova committed Jan 31, 2024
1 parent d52832b commit 780f486
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions physics/SFC_Models/Land/RUC/lsm_ruc.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1304,8 +1304,7 @@ subroutine lsm_ruc_run & ! inputs

! --- ... accumulated total runoff and surface runoff
runoff(i) = runoff(i) + (drain(i)+runof(i)) * delt ! accum total kg m-2
!srunoff(i) = srunoff(i) + runof(i) * delt ! accum surface kg m-2
srunoff(i) = acrunoff(i,j) ! accum surface kg m-2
srunoff(i) = srunoff(i) + runof(i) * delt ! accum surface kg m-2

! --- ... accumulated frozen precipitation (accumulation in lsmruc)
snowfallac_lnd(i) = snfallac_lnd(i,j) ! accum kg m-2
Expand Down

0 comments on commit 780f486

Please sign in to comment.