Shuxia Ning
2024-10-08 cf4967a0aebab18c5a37137f3e4c61b2d73a54bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using IStation.Epanet.Enums;
 
namespace IStation.Epanet.Network.Structures
{
 
    ///<summary>Water quality object, source quality.</summary>
    public class QualSource
    {
        ///<summary>Base concentration.</summary>
        public double C0 { get; set; }
 
        ///<summary>Time pattern reference.</summary>
        public Pattern Pattern { get; set; }
 
        ///<summary>Source type.</summary>
        public SourceType Type { get; set; }
 
        public QualSource(SourceType type, double c0, Pattern pattern)
        {
            C0 = c0;
            Pattern = pattern;
            Type = type;
        }
 
    }
 
}