Page 1 of 1

Runoff from elevation bands

Posted: Sat Jul 08, 2017 4:50 pm
by anonymous77
Can I extract runoff from each elevation band as a custom output? I didn’t see any option for this as a custom output.

Re: Runoff from elevation bands

Posted: Sat Jul 08, 2017 5:26 pm
by rchlumsk
anonymous77 wrote:Can I extract runoff from each elevation band as a custom output? I didn’t see any option for this as a custom output.

Yes, by creating HRU groups. For instance, to extract from each band, first define the groups in the .rvi file:

Code: Select all

:DefineHRUGroups Band1, Band2, Band3

Then add the custom command to the bottom of the .rvi file:

Code: Select all

:CustomOutput CONTINUOUS AVERAGE SNOW BY_HRU_GROUP

Then populate the groups with HRUs (indexed by their ID in the :HRU command):

Code: Select all

:HRUGroup Band1
  1 ,3, 4,5
:EndHRUGroup
:HRUGroup Band2
2, 6,7,8
:EndHRUGroup

Etc.