Click or drag to resize

CatchmentSurface Class

Catchment surface class, handling wetting loss, storage loss, infiltration and evaporation

If Infiltration is not defined, the surface is assumed to be impervious, and no infiltration is applied.

Inheritance Hierarchy

Namespace:  DHI.Mike1D.RainfallRunoffModule
Assembly:  DHI.Mike1D.RainfallRunoffModule (in DHI.Mike1D.RainfallRunoffModule.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntax
public class CatchmentSurface : ICatchmentSurfaceData

The CatchmentSurface type exposes the following members.

Constructors
  NameDescription
Public methodCatchmentSurface
Default constructor
Top
Properties
  NameDescription
Public propertyApplyEvaporationOnRain
When raining, if true the evaporation is applied at the beginning of the time step, correcting the net rain and limited by the rain. If false, evaporation is applied on non-empty storages in the catchment and can exceed the rain.

In dry periods, this is not used, evaporation is always applied on storages.

Public propertyHorton Obsolete.
Horton, defined only for pervious surfaces.

Returns null if Infiltration is not Horton.

Public propertyInfiltration
Infiltration calculator. If null, the surface is impervious.
Public propertyInfiltrationAfterRain
True if infiltration shall occur also after rain has ended.

Default is true

.
Public propertyStorageCapacity
Storage capacity Unit: [m]
Public propertyUseReverseDraining Obsolete.
Revert to old draining order. Set to true to drain in same order as in MOUSE engine.

Reverse draining drains in order: wetting, storage, depth. Hence, when storages are full, wetting and storage will be drained and not depth, depth will be higher and give more runoff. This is visible in low-flow conditions.

Public propertyWettingCapacity
Wetting capacity Unit: [m]
Top
Methods
  NameDescription
Public methodStatic memberDrainStorage
Drains water for the given storage (eg. infiltration)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodStatic memberFillStorage
Fills a specific storage with a giving amount of inflow (rain). This procedure will update the amount of inflow not added to the storage, and returns the new depth of the storage.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodPerformTimeStep
Take timestep for surface, filling storages and evaluating evaporation and infiltration
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Public fieldDepth
Depth of water on sub-catchment. State variable. Unit: [m]
Public fieldDepthOld
Depth of water at the previous time step. Computational variable. Unit: [m]
Public fieldEvapActual
Actual evaporation. Reporting variable. Unit: [m/s]
Public fieldInfiltrationActual
Actual infiltration. Reporting variable. Unit: [m/s]
Public fieldInfiltrationActualOld
Infiltration of last time step Reporting variable. Unit: [m/s]
Public fieldInfiltrationPotential
Potential infiltration. Reporting variable. Unit: [m/s]
Public fieldInfiltrationPotentialOld
Potential infiltration of last time step Reporting variable. Unit: [m/s]
Public fieldStorageLoss
Storage loss depth. State variable. Unit: [m]
Public fieldStorageLossOld
Storage loss depth at the previous time step. Computational variable. Unit: [m]
Public fieldWettingLoss
Wetting loss depth. State variable. Unit: [m]
Public fieldWettingLossOld
Wetting loss depth at the previous time step. Computational variable. Unit: [m]
Top
See Also