-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
723 additions
and
244 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,8 @@ public enum LoadTypes | |
GridGas, | ||
SolarRadiation, | ||
Wind, | ||
Custom | ||
Custom, | ||
GridHeat, | ||
GridCool | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using System.Collections.Generic; | ||
using DistrictEnergy.Helpers; | ||
using DistrictEnergy.Networks.Loads; | ||
using LiveCharts.Defaults; | ||
|
||
namespace DistrictEnergy.Networks.ThermalPlants | ||
{ | ||
public abstract class BaseLoad : AbstractDistrictLoad, IBaseLoad | ||
{ | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Windows.Media; | ||
using DistrictEnergy.Helpers; | ||
using DistrictEnergy.Networks.Loads; | ||
using LiveCharts.Defaults; | ||
using Umi.Core; | ||
|
||
namespace DistrictEnergy.Networks.ThermalPlants | ||
{ | ||
internal class CoolingExport : Exportable | ||
{ | ||
public CoolingExport() | ||
{ | ||
} | ||
|
||
public override Guid Id { get; set; } = Guid.NewGuid(); | ||
public override LoadTypes LoadType { get; set; } = LoadTypes.Cooling; | ||
public override double[] Input { get; set; } = new double[8760]; | ||
public override double F { get; set; } = 0; | ||
public override double V { get; set; } = 0.15; | ||
|
||
public override SolidColorBrush Fill { get; set; } = | ||
new SolidColorBrush((Color)ColorConverter.ConvertFromString("#FF6161")); | ||
|
||
public override string Name { get; set; } = "Cooling Export"; | ||
|
||
public override void GetUmiLoads(List<UmiObject> contextObjects) | ||
{ | ||
|
||
} | ||
} | ||
} |
Oops, something went wrong.