Skip to content

How should I route the runoff on each grid to the watershed outlet? #40

Answered by wschwanghart
FredPre asked this question in Q&A
Discussion options

You must be logged in to vote

Hi, based on the highly simplified assumption that travel times between adjacent pixels are the same everywhere, we can formulate a very simple runoff model. Here, you have an instantaneous runoff in each grid cell at the beginning of the simulation. If you want to add precipitation (add a source term), you'll need to update the runoff grid accordingly after each time step. Note, however, that the assumption for constant travel times might work on hillslopes, but likely not anymore once the water enters the rivers.

DEM = GRIDobj('srtm_bigtujunga30m_utm11.tif');
FD  = FLOWobj(DEM);
RO  = GRIDobj(DEM)+1;
n   = prod(DEM.size);
for r = 1:1000
    % Runoff in each giving cell
    ro = RO.Z(FD.…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by FredPre
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants