ICatchmentKinematicWaveData Interface

Kinematic wave data interface.

The Kinematic wave rainfall runoff model is also called "Urban B"

In Kinematic Wave model the runoff is computed as flow in an open channel, taking the gravitational and frition forces only. The runoff amount is controlled by the various hydrological losses and the size of the actually contributing area.

Interface for Kinematic Wave catchment model inherits from ICatchmentUrbanData interface.

This interface contains data and parameters for setting up a catchment model, and represents as such only setup data. Computational variables and methods are not included in this interface. It can be used to explore data and parameters required when setting up the catchment model.

Definition

Namespace: DHI.Mike1D.RainfallRunoffModule
Assembly: DHI.Mike1D.RainfallRunoffModule (in DHI.Mike1D.RainfallRunoffModule.dll) Version: 24.0.0.0 (11.1.1.1111)
C#
public interface ICatchmentKinematicWaveData : ICatchmentUrbanData, 
	ICatchmentData, ICatchmentWithSurfaces
Implements
ICatchmentData, ICatchmentUrbanData, ICatchmentWithSurfaces

Properties

AdditionalFlow Additional constant flow added to the total runoff Unit: [m3/s] Default: 0
(Inherited from ICatchmentData)
ApplyEvaporationOnRain True if the evaporation is applied at the beginning of the time step, correcting the net rain (in wet periods).

If false, evaporation is applied at the end of the time step on non-empty storages in the catchment.

Only valid if EvaporationFromTimeSeries is enabled.

Default true. Historically MIKE 11 has set this to true and MIKE URBAN to false.

Area Total area of catchment
(Inherited from ICatchmentData)
CatchmentGeometry Geometry of the catchment. This is a list of coordinates defining a closed polygon as the extent of the catchment.
(Inherited from ICatchmentData)
CatchmentName Catchment name

The name is not unique, there may be several catchment models for one catchment, however all catchments with the same name should/must share the same catchment geometry.


(Inherited from ICatchmentData)
CenterPoint The central point of the catchment. Used for e.g. finding the rain time series closest to this catchment.
(Inherited from ICatchmentData)
EndTime End time of catchment simulation - the latest time for which the catchment can return data
(Inherited from ICatchmentData)
Obsolete
EvaporationFromTimeSeries True if evaporation is enabled, and an evaporation boundary has been defined.

If set to false the initial recover rate is used during dry periods. Default: False


(Inherited from ICatchmentUrbanData)
FixedLengthWidthRatio Flag indicating if the length-width ratio should be fixed.

When fixed, the length and width for each sub-catchment are calculated so that the length/width ratio for each sub-area is kept equal to the length/width ratio of the entire catchment.

When not set, the length of each subcatchment equals the length of the entire catchment, and width of each subcatchment is calculated as the area fraction of the width of the entire catchment.

This is only applicable when the catchment does not specify their length explicitly, see Length.

Default: true

GlobalDryDepthLimit Dry depth used for switching Horton's mode between dry and wet in Kinematic Wave model: when InfiltrationAfterRain == true In this case the switching to regeneration of infiltration capacity is controlled by a low limit of the water depth on the surface. (from ini file) Unit: [m] Default: 1e-6
(Inherited from ICatchmentUrbanData)
InfiltrationAfterRain True if infiltration shall occur also after rain Default: True
(Inherited from ICatchmentUrbanData)
InitialLossRecoveryRate Recovery rate for initial loss capacity. The initial loss capacity is regenerated in dry periods by a linear recovery rate.

Used as constant evaporation, when evaporation is not defined explicitly. If evaporation is defined explicitly (see EvaporationFromTimeSeries), this is neglected.

For some catchment models it is only applied under dry conditions.

Unit: [m/s] Default: 0.00005 [m/hour]


(Inherited from ICatchmentUrbanData)
IntegratedHorton True if the Integrated Horton method is used in the calculation for infiltration. Default: False
Item Getter returning data that vary with each surface type.
Length The length of the channel.

The model assumes a prismatic flow chammel with rectangular cross section. The channel bottom width is computed from catchment area and length.

This is only applicable when the catchment does not specify their length explicitly, see Length.

Unit: [m]

LowFlow Low flow limit for switching to dry period time step. The dry period time step will only be applied when the runoff from the rainfall is below the limit. Unit: [m3/s] Default: 0.0001
ModelId Catchment model ID. Unique id.
(Inherited from ICatchmentData)
Name Catchment model ID. Unique id.
(Inherited from ICatchmentData)
Obsolete
ObservedData Observed data. Used for creating calibration plots and for auto-calibration reference data.
(Inherited from ICatchmentData)
Persons Number of person equivalent in the catchment, used with catchment discharge source boundary
(Inherited from ICatchmentData)
Slope Avearage slope of the catchment.

This is only applicable when the catchment does not specify their slope explicitly, see Slope.

Unit: [-]

SnowMeltCoefficient Snow melt coefficient. Note: the snow melt coefficient is not in SI unit, because the temperature is assumed to be in degres Celcius. Unit: [m/degCelcius/s]
(Inherited from ICatchmentUrbanData)
StartTime Start time of catchment simulation - the earliest time for which the catchment can return data
(Inherited from ICatchmentData)
Obsolete
StatisticsType Periodic statistics type for catchments
(Inherited from ICatchmentData)
StormWaterLIDs StormWater LIDs connected to catchment
(Inherited from ICatchmentData)
Surfaces Actual computational surfaces.

Typically the same list as SurfacesData. However, after processing may contain more surfaces than in SurfacesData.


(Inherited from ICatchmentWithSurfaces)
SurfacesData List of custom catchment surfaces.

If this list is empty the default surfaces are used.


(Inherited from ICatchmentWithSurfaces)
TimeStep Time step used during the simulation by the catchment model
(Inherited from ICatchmentData)
TimeStepDry Time step used during dry period Default: 12 hours
TimeStepDryPeriod Time step used during dry period Unit: [s] Default: 12 hours
Obsolete
UseHotStartFile Flag telling if initial conditions is taken from a hotstart file Default: false
(Inherited from ICatchmentData)
UseSnowModule True if the snow module is activated. If True, a temperature time series has to be provided for the catchment.
(Inherited from ICatchmentUrbanData)

See Also