Added quarter based simulation with efficiency and capacity parameters.
This commit is contained in:
@@ -8,5 +8,14 @@ namespace BattSim.Models
|
||||
public bool DayTariff { get; set; }
|
||||
public double Consumption { get; set; }
|
||||
public double Production { get; set; }
|
||||
|
||||
public EnergyData(){}
|
||||
public EnergyData(EnergyData other)
|
||||
{
|
||||
Time = other.Time;
|
||||
DayTariff = other.DayTariff;
|
||||
Consumption = other.Consumption;
|
||||
Production = other.Production;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user