namespace Yw.Epanet
|
{
|
/// <summary>
|
/// 节点属性
|
/// </summary>
|
internal class NodeProperty
|
{
|
/// <summary>
|
/// 标高
|
/// </summary>
|
public const int EN_ELEVATION = 0;
|
|
/// <summary>
|
/// 基本需水量
|
/// </summary>
|
public const int EN_BASEDEMAND = 1;
|
|
/// <summary>
|
/// 需水量模式索引
|
/// </summary>
|
public const int EN_PATTERN = 2;
|
|
/// <summary>
|
/// 扩散器系数
|
/// </summary>
|
public const int EN_EMITTER = 3;
|
|
/// <summary>
|
/// 初始水质
|
/// </summary>
|
public const int EN_INITQUAL = 4;
|
|
/// <summary>
|
/// 源头水质
|
/// </summary>
|
public const int EN_SOURCEQUAL = 5;
|
|
/// <summary>
|
/// 源头模式索引
|
/// </summary>
|
public const int EN_SOURCEPAT = 6;
|
|
/// <summary>
|
/// 源头类型
|
/// </summary>
|
public const int EN_SOURCETYPE = 7;
|
|
/// <summary>
|
/// 当前计算的水箱水位
|
/// Read Only
|
/// </summary>
|
public const int EN_TANKLEVEL = 8;
|
|
/// <summary>
|
/// 当前计算的需水量
|
/// Read Only
|
/// </summary>
|
public const int EN_DEMAND = 9;
|
|
/// <summary>
|
/// 当前计算水头
|
/// Read Only
|
/// </summary>
|
public const int EN_HEAD = 10;
|
|
/// <summary>
|
/// 当前计算压力
|
/// Read Only
|
/// </summary>
|
public const int EN_PRESSURE = 11;
|
|
/// <summary>
|
/// 当前计算水质
|
/// Read Only
|
/// </summary>
|
public const int EN_QUALITY = 12;
|
|
/// <summary>
|
/// 每分钟化学成分源头的质量流量
|
/// Read Only
|
/// </summary>
|
public const int EN_SOURCEMASS = 13;
|
|
/// <summary>
|
/// 水池初始容量
|
/// Read Only
|
/// </summary>
|
public const int EN_INITVOLUME = 14;
|
|
/// <summary>
|
/// 水池混合模型
|
/// </summary>
|
public const int EN_MIXMODEL = 15;
|
|
/// <summary>
|
/// 2室罐中的入口/出口区体积
|
/// Read Only
|
/// </summary>
|
public const int EN_MIXZONEVOL = 16;
|
|
/// <summary>
|
/// 水池直径
|
/// </summary>
|
public const int EN_TANKDIAM = 17;
|
|
/// <summary>
|
/// 水池最小容量
|
/// </summary>
|
public const int EN_MINVOLUME = 18;
|
|
/// <summary>
|
/// 水池容积曲线索引
|
/// </summary>
|
public const int EN_VOLCURVE = 19;
|
|
/// <summary>
|
/// 水池最低水位
|
/// </summary>
|
public const int EN_MINLEVEL = 20;
|
|
/// <summary>
|
/// 水池最高水位
|
/// </summary>
|
public const int EN_MAXLEVEL = 21;
|
|
/// <summary>
|
/// 2室罐中入口/出口区所占总体积的比例
|
/// </summary>
|
public const int EN_MIXFRACTION = 22;
|
|
/// <summary>
|
/// Tank bulk decay coefficient
|
/// </summary>
|
public const int EN_TANK_KBULK = 23;
|
|
/// <summary>
|
/// Current computed tank volume
|
/// Read Only
|
/// </summary>
|
public const int EN_TANKVOLUME = 24;
|
|
/// <summary>
|
/// Tank maximum volume
|
/// read only
|
/// </summary>
|
public const int EN_MAXVOLUME = 25;
|
|
/// <summary>
|
/// Tank can overflow
|
/// (= 1) or not (= 0)
|
/// </summary>
|
public const int EN_CANOVERFLOW = 26;
|
|
/// <summary>
|
/// Amount that full demand is reduced under PDA
|
/// read only
|
/// </summary>
|
public const int EN_DEMANDDEFICIT = 27;
|
|
/// <summary>
|
/// Is present in any simple or rule-based control
|
/// (= 1) or not (= 0)
|
/// </summary>
|
public const int EN_NODE_INCONTROL = 28;
|
|
/// <summary>
|
/// Current emitter flow
|
/// read only
|
/// </summary>
|
public const int EN_EMITTERFLOW = 29;
|
|
/// <summary>
|
/// Current leakage flow
|
/// read only
|
/// </summary>
|
public const int EN_LEAKAGEFLOW = 30;
|
|
/// <summary>
|
/// Current consumer demand delivered
|
/// read only
|
/// </summary>
|
public const int EN_DEMANDFLOW = 31;
|
|
/// <summary>
|
/// Current consumer demand requested
|
/// read only
|
/// </summary>
|
public const int EN_FULLDEMAND = 32;
|
|
}
|
}
|