예제 #1
0
파일: Line.cs 프로젝트: tonyju/DSMviewer
 public Line(string thisName, SubGeographicalRegion thisArea, string sourceBus, float baseKV)
     : base(thisName, thisArea)
 {
     this.lineBuilder = new LineBuilder(this);
     VoltageLevels = new List<TopologicalNode.VoltageLevel>();
     lineBuilder.BuildModel();
     type = "Line";
     bus1 = sourceBus;
     Area = thisArea;
     BaseKV = baseKV;
 }