Class AirCondition
java.lang.Object
org.powertac.officecomplexcustomer.appliances.Appliance
org.powertac.officecomplexcustomer.appliances.WeatherSensitiveAppliance
org.powertac.officecomplexcustomer.appliances.AirCondition
public class AirCondition extends WeatherSensitiveAppliance
Air Condition is the most common used electrical appliance to date that keeps
the household environment in the desired temperature. Usually, it can be used
either for cooling or for heating.Thus, it is utilized when people are
present in the household.
- Version:
- 1.5, Date: 2.25.12
- Author:
- Antonios Chrysopoulos
-
Field Summary
Fields inherited from class org.powertac.officecomplexcustomer.appliances.Appliance
applianceOf, cycleDuration, log, name, overallPower, power, randomSeedRepo, saturation -
Constructor Summary
Constructors Constructor Description AirCondition() -
Method Summary
Modifier and Type Method Description voidfillDailyOperation(int weekday)This function fills out all the quarters of the appliance functions for a single day of the week.voidinitialize(String household, Properties conf, int seed)This is the initialization function.voidrefresh()At the end of each week the appliance models refresh their schedule.voidshowStatus()This is the function utilized to show the information regarding the appliance in question, its variables values etc.voidweatherDailyFunction(int day, int hour, double temperature)This function fills out the daily function of an appliance for the day.Methods inherited from class org.powertac.officecomplexcustomer.appliances.Appliance
calculateOverallPower, createWeeklyPossibilityOperationVector, dailyShifting, fillWeeklyOperation, getApplianceOf, getDuration, getOperationDaysVector, getOverallPower, getPower, getSaturation, getWeeklyLoadVector, getWeeklyOperation, setApplianceOf, setOperationDays, toString
-
Constructor Details
-
AirCondition
public AirCondition()
-
-
Method Details
-
initialize
Description copied from class:ApplianceThis is the initialization function. It uses the variable values for the configuration file to create the appliance as it should for this type.- Overrides:
initializein classAppliance
-
fillDailyOperation
public void fillDailyOperation(int weekday)Description copied from class:ApplianceThis function fills out all the quarters of the appliance functions for a single day of the week.- Overrides:
fillDailyOperationin classAppliance
-
weatherDailyFunction
public void weatherDailyFunction(int day, int hour, double temperature)Description copied from class:ApplianceThis function fills out the daily function of an appliance for the day.- Overrides:
weatherDailyFunctionin classAppliance
-
showStatus
public void showStatus()Description copied from class:ApplianceThis is the function utilized to show the information regarding the appliance in question, its variables values etc.- Overrides:
showStatusin classAppliance
-
refresh
public void refresh()Description copied from class:ApplianceAt the end of each week the appliance models refresh their schedule. This way we have a realistic and dynamic model, changing function hours, consuming power and so on.
-