Skip to content

Commit

Permalink
Update src/STEMMUS_SCOPE.m
Browse files Browse the repository at this point in the history
Co-authored-by: SarahAlidoost <55081872+SarahAlidoost@users.noreply.github.com>
  • Loading branch information
MostafaGomaa93 and SarahAlidoost authored Jun 21, 2024
1 parent 2ce2a5e commit b2971c1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/STEMMUS_SCOPE.m
Original file line number Diff line number Diff line change
Expand Up @@ -643,9 +643,7 @@
DSTOR = min(EXCESS, DSTMAX); % Depth of depression storage at end of current time step
% Next line is commented and Surface runoff is re-calculated using different approach (the following 3 lines)
% RS(KT) = (EXCESS - DSTOR) / Delt_t; % surface runoff, (unit conversion from cm/30mins to cm/sec)
R_Dunn(KT) = ForcingData.R_Dunn(KT); % (cm/sec)
R_Hort(KT) = ForcingData.R_Hort(KT); % (cm/sec)
RS(KT) = R_Hort(KT) + R_Dunn(KT); % total surface runoff (cm/sec)
RS(KT) = ForcingData.R_Hort(KT) + ForcingData.R_Dunn(KT); % total surface runoff (cm/sec)
end

if ModelSettings.Soilairefc == 1
Expand Down

0 comments on commit b2971c1

Please sign in to comment.