Click or drag to resize

ICatchmentSWQ Interface

Interface for classes that wants to support SWQ calculations

Namespace:  DHI.Mike1D.RainfallRunoffModule
Assembly:  DHI.Mike1D.RainfallRunoffModule (in DHI.Mike1D.RainfallRunoffModule.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntax
public interface ICatchmentSWQ : ICatchment, 
	IDoubleProxy, IQuantityProxy, IDoubleTimeProxy, ICalibratable

The ICatchmentSWQ type exposes the following members.

Properties
  NameDescription
Public propertyArea
Total area of catchment Unit: [m2]
(Inherited from ICatchment.)
Public propertyBoundarySourceRainfall
Rainfall boundary
Public propertyCatchmentGeometry
Get and set the list of coordinates of the catchment
(Inherited from ICatchment.)
Public propertyCatchmentName
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 ICatchment.)
Public propertyCenterPoint
Get and set the central point of the catchment
(Inherited from ICatchment.)
Public propertyClientName
Title of the calibration plot
(Inherited from ICalibratable.)
Public propertyCurrentTime
Return the time of the current state.
(Inherited from ICatchment.)
Public propertyEffectiveArea
Effective area of catchment, where runoff takes place. Unit: [m2]
(Inherited from ICatchment.)
Public propertyEndTime
Return the end time of the catchment simulation. This is set during prepare, and the catchment must make sure not to run beyond this time.
(Inherited from ICatchment.)
Public propertyMinTime
Minimum time to which Time can be set. The catchment must caches values from MinTime to the max value of Time.
(Inherited from ICatchment.)
Public propertyModelId
Catchment model ID. Unique id.
(Inherited from ICatchment.)
Public propertyName Obsolete.
Same as ModelId - for backward compatibility.
(Inherited from ICatchment.)
Public propertyObservedData
Observed data. Used for creating calibration plots and for auto-calibration reference data.
(Inherited from ICatchment.)
Public propertyRunoff
Total runoff from catchment at present time step. Unit: [m^3/s]
(Inherited from ICatchment.)
Public propertyTimeStep
Time step op catchment
(Inherited from ICatchment.)
Public propertyTSBuffer
Set the TSBuffer to use in this catchment
(Inherited from ICatchment.)
Public propertyVolumeOnGroundAdded
Volume of water added to catchment after a time step. This water will be eventually routed.
Public propertyYearlyRunoff Obsolete. (Inherited from ICatchment.)
Top
Methods
  NameDescription
Public methodAccepts
List of data types that is accepted, i.e., that you can get a ValueSetter for.
(Inherited from IQuantityProxy.)
Public methodInitialize
Initialize Rainfall Runoff model. Sets up static data.
(Inherited from ICatchment.)
Public methodInitializePlugins
Initializes the cathcment plugins.
(Inherited from ICatchment.)
Public methodOffers
List of data types that is offered, i.e., that you can get a ValueGetter for.
(Inherited from IQuantityProxy.)
Public methodPerformTimeStep
This procedure forwards the calculation with one time step.
(Inherited from ICatchment.)
Public methodPrepare
Prepare Rainfall Runoff model. Sets up dynamic data so that the model is ready for first time step.
(Inherited from ICatchment.)
Public methodPreparePlugins
Prepares the cathcment plugins.
(Inherited from ICatchment.)
Public methodResetBoundaries
Remove boundaries applied in previous runs
(Inherited from ICatchment.)
Public methodTimeOffers
List of data types that is offered and can be used in GetValue
(Inherited from IDoubleTimeProxy.)
Public methodTimeOfNextUpdate Obsolete.
Return the time of next update. Used for PostTimeStepEvent event in Catchments.
(Inherited from ICatchment.)
Public methodTimeValueGetter
Get value getter for the specified data quantity
(Inherited from IDoubleTimeProxy.)
Public methodType
Type of model used in catchment
(Inherited from ICatchment.)
Public methodUpdate
This procedure forwards the calculation such that the state includes the specified time
(Inherited from ICatchment.)
Public methodValueGetter
Get value setter for the specified data quantity
(Inherited from IDoubleProxy.)
Public methodValueSetter
Get value setter for the specified data type
(Inherited from IDoubleProxy.)
Top
Events
  NameDescription
Public eventPostTimeStepEvent
An event that is called everytime a timestep was successfully performed.
(Inherited from ICatchment.)
Top
Extension Methods
  NameDescription
Public Extension MethodGetter(IQuantity)Overloaded.

From the proxy, return an FuncTResult for the specified quantity.

It returns the first quantity of that type that is offered, and null if the quantity is not offered.

(Defined by ProxyExtensions.)
Public Extension MethodGetter(IQuantity, IQuantity)Overloaded.

From the proxy, return an FuncTResult for the specified quantity.

It returns the first quantity of that type that is offered, and null if the quantity is not offered.

(Defined by ProxyExtensions.)
Public Extension MethodGetters
Returns a set of FuncTResult for the quantity. We can return several quantities with the same id (usually they will differ in their description). If the quantity is not offerent, an empty list is returned.
(Defined by ProxyExtensions.)
Public Extension MethodGettersFraction
Returns a set of FuncT, TResult for the quantity. We can return several quantities with the same id (usually they will differ in their description). If the quantity is not offerent, an empty list is returned.
(Defined by ProxyExtensions.)
Public Extension MethodGetterUnboxed

From the proxy, return an FuncTResult for the specified quantity.

It returns the first quantity of that type that is offered, and null if the quantity is not offered.

(Defined by ProxyExtensions.)
Public Extension MethodNTSGeometry
Create an NTS geometry from the CatchmentGeometry.

Depending on the coordinates, the returned IGeometry is either a NTS Polygon or NTS MultiPolygon.

(Defined by RRExtensions.)
Public Extension MethodSetter

From the proxy, return an IDoubleGetSet for the specified quantity.

It returns the first quantity of that type that is accepted, and null if the quantity is not accepted.

(Defined by ProxyExtensions.)
Public Extension MethodTimeValueGetter

From the proxy, return an FuncT, TResult for the specified quantity.

It returns the first quantity of that type that is offered, and null if the quantity is not offered.

(Defined by ProxyExtensions.)
Top
See Also