IFlowNode Interface

A flow node, which considers a fluid flowing in/out of it. Currently, could be a Hydrodynamics (HD) or Air module node.

Definition

Namespace: DHI.Mike1D.Engine.ModuleFlow
Assembly: DHI.Mike1D.Engine (in DHI.Mike1D.Engine.dll) Version: 24.0.0.0 (11.1.1.1111)
C#
public interface IFlowNode : IModuleNode
Implements
IModuleNode

Properties

CourantNumber The Courant Number reflects the fraction between the amount of volume flowing through the cell in one time step and the amount of volume of water in the cell.

If the value is larger than one, all the water in the cell is "replaced" during a single time step.

EngineNode EngineNode matching this module node
(Inherited from IModuleNode)
FlowReachConnections List of Reach connections, each specifying a connection between the node and a reach.
SourcesOutflowAccumulated outflow sources (lateral outflow) at current time step. Always negative. It does not include SourcesOutflowSurface
VolumeError Calculate the volume/mass error for node. In volume unit ([m3]).
VolumeN Volume at previous time step N.
VolumeNp1 Volume at current time step Np1.

Methods

GetVolumeN Retrieve volume at level N with a given offset from that level.
GetVolumeNp1 Retrieve volume at level Np1 with a given offset from that level.

See Also