Ejemplo n.º 1
0
 public Z_DetermineHousetype([NotNull] ServiceRepository services)
     : base(nameof(Z_DetermineHousetype), Stage.Houses, 2600, services, false)
 {
     DevelopmentStatus.Add("//todo: figure out the house type");
     DevelopmentStatus.Add("//efh / mfh / gewerbe / industrie /wwk sonstiges / garage /?");
     DevelopmentStatus.Add("//gwr + feuerungsstättendaten");
     DevelopmentStatus.Add("//todo: check if there are really this few business-only buildings");
 }
Ejemplo n.º 2
0
 public A07_TrafokreisAnalyzer([NotNull] ServiceRepository services)
     : base(nameof(A07_TrafokreisAnalyzer), Stage.Houses, 7, services, true)
 {
 }
Ejemplo n.º 3
0
 public G_DHWSystemAssignment([NotNull] ServiceRepository services)
     : base(nameof(G_DHWSystemAssignment), Stage.Houses, 800, services, false)
 {
     DevelopmentStatus.Add("//todo: change the heating systeme electricity to only use the lower tarif electricity at night");
     DevelopmentStatus.Add("fill in the missing dhw heating system types");
 }
 protected RunableWithBenchmark([NotNull] string name, Stage stage, int sequenceNumber, [NotNull] ServiceRepository services, bool implementationFinished,
                                [NotNull] IVisualizeSlice visualizeSlice)
     : base(name, stage, sequenceNumber, Steptype.Global, services, implementationFinished, visualizeSlice)
 {
 }
 protected RunnableForScenarioWithBenchmark([NotNull] string name, Stage stage, int sequenceNumber, [NotNull] ServiceRepository services, bool implementationFinished)
     : base(name, stage, sequenceNumber, Steptype.Scenario, services, implementationFinished, null)
 {
 }
Ejemplo n.º 6
0
 protected RunableForSingleSliceWithBenchmark([NotNull] string name, Stage stage, int sequenceNumber, [NotNull] ServiceRepository services, bool implementationFinished, [CanBeNull] IVisualizeSlice sliceVisualizer)
     : base(name, stage, sequenceNumber, Steptype.SliceProcessors, services, implementationFinished, sliceVisualizer)
 {
 }