Esempio n. 1
0
 public Substation(SubGeographicalRegion thisRegion, string thisName)
     : base(thisName, thisRegion)
 {
     this.builder = new SubstationBuilder(this);
     this.lines = new Dictionary<string, Line>();
     builder.BuildModel();
 }
Esempio n. 2
0
 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;
 }
Esempio n. 3
0
 public AreaBuilder(SubGeographicalRegion thisArea)
     : base(thisArea)
 {
     area = thisArea;
     containedTypeNames = new string[] { "Location", "PositionPoint", "Substation" };
 }