|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.powertac.common.state.XStreamStateLoggable
org.powertac.common.Rate
public class Rate
Tariffs are composed of Rates. Rates may be applicable on particular days of the week, particular times of day, or above some usage threshold. Rates may be fixed or variable. Tariffs and their rates are public information. New tariffs and their Rates are communicated to Customers and to Brokers when tariffs are published.
| Constructor Summary | |
|---|---|
Rate()
Default constructor only. |
|
| Method Summary | |
|---|---|
boolean |
addHourlyCharge(HourlyCharge newCharge)
Adds a new HourlyCharge to a variable rate. |
boolean |
addHourlyCharge(HourlyCharge newCharge,
boolean publish)
Allows initial publication of HourlyCharge instances within the notification interval. |
boolean |
applies()
True just in case this Rate applies at this moment, ignoring the tier. |
boolean |
applies(org.joda.time.base.AbstractInstant when)
True just in case this Rate applies at the given DateTime, ignoring the tier. |
boolean |
applies(double usage)
True just in case this Rate applies at this moment, for the indicated usage tier. |
boolean |
applies(double usage,
org.joda.time.base.AbstractInstant when)
True just in case this Rate applies at the specified time, for the indicated usage tier. |
int |
getDailyBegin()
|
int |
getDailyEnd()
|
double |
getExpectedMean()
|
long |
getId()
Returns the id of this Rate |
double |
getMaxCurtailment()
Returns the maximum proportion of offered load or supply that can be curtailed in a given timeslot. |
double |
getMaxValue()
|
double |
getMinValue()
|
long |
getNoticeInterval()
|
TreeSet<HourlyCharge> |
getRateHistory()
Returns the sequence of HourlyCharge instances for this Rate. |
long |
getTariffId()
Returns the id of the TariffSpecification to which this Rate is attached. |
double |
getTierThreshold()
|
double |
getValue()
Returns the rate for the current time. |
double |
getValue(org.joda.time.base.AbstractInstant when)
Returns the rate for some time in the past or future, regardless of whether the Rate applies at that time, and regardless of whether the requested time is beyond the notification interval of a variable rate. |
int |
getWeeklyBegin()
|
int |
getWeeklyEnd()
|
boolean |
isFixed()
|
String |
toString()
|
Rate |
withDailyBegin(org.joda.time.base.AbstractDateTime begin)
Sets the time of day when this Rate comes into effect. |
Rate |
withDailyBegin(int begin)
Sets the time of day when this Rate comes into effect as hours since midnight. |
Rate |
withDailyBegin(org.joda.time.ReadablePartial begin)
Sets the time of day when this Rate comes into effect. |
Rate |
withDailyEnd(org.joda.time.base.AbstractDateTime end)
Sets the time of day when this Rate is no longer in effect. |
Rate |
withDailyEnd(int end)
Sets the time of day when this Rate is no longer in effect, given as hours since midnight. |
Rate |
withDailyEnd(org.joda.time.ReadablePartial end)
Sets the time of day when this Rate is no longer in effect. |
Rate |
withExpectedMean(double value)
Specifies the expected mean charge/kWh, excluding periodic charges, for this Rate. |
Rate |
withFixed(boolean fixed)
Specifies whether this Rate is fixed (true) or variable (false). |
Rate |
withMaxCurtailment(double value)
Sets the maximum proportion of offered load or supply that can be curtailed. |
Rate |
withMaxValue(double maxValue)
Specifies the maximum charge (furthest from zero) for variable Rates. |
Rate |
withMinValue(double minValue)
Specifies the minimum charge (closest to zero) for variable Rates. |
Rate |
withNoticeInterval(org.joda.time.Duration interval)
Specifies the minimum interval for rate change notifications for a variable Rate. |
Rate |
withNoticeInterval(long hours)
Specifies the minimum interval in hours for rate change notifications for a variable Rate. |
Rate |
withTierThreshold(double tierThreshold)
Sets the usage threshold for applicability of this Rate. |
Rate |
withValue(double value)
Specifies the charge/kWh for a fixed rate, from the customer's viewpoint. |
Rate |
withWeeklyBegin(org.joda.time.base.AbstractDateTime begin)
Sets the day of the week on which this Rate comes into effect. |
Rate |
withWeeklyBegin(int begin)
Sets the day of the week on which this Rate comes into effect. |
Rate |
withWeeklyBegin(org.joda.time.ReadablePartial begin)
Sets the day of the week on which this Rate comes into effect. |
Rate |
withWeeklyEnd(org.joda.time.base.AbstractDateTime end)
Sets the weekly end of applicability for this Rate, by processing end spec to extract dayOfWeek field. |
Rate |
withWeeklyEnd(int end)
Sets the weekly end of applicability for this Rate. |
Rate |
withWeeklyEnd(org.joda.time.ReadablePartial end)
Sets the weekly end of applicability for this Rate, by processing end spec to extract dayOfWeek field. |
| Methods inherited from class org.powertac.common.state.XStreamStateLoggable |
|---|
readResolve |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public Rate()
| Method Detail |
|---|
public long getId()
public long getTariffId()
public Rate withWeeklyBegin(org.joda.time.base.AbstractDateTime begin)
begin parameter is processed to extract the dayOfWeek field.
public Rate withWeeklyBegin(org.joda.time.ReadablePartial begin)
public Rate withWeeklyBegin(int begin)
public int getWeeklyBegin()
public Rate withWeeklyEnd(org.joda.time.base.AbstractDateTime end)
public Rate withWeeklyEnd(org.joda.time.ReadablePartial end)
public Rate withWeeklyEnd(int end)
public int getWeeklyEnd()
public Rate withDailyBegin(org.joda.time.base.AbstractDateTime begin)
public Rate withDailyBegin(org.joda.time.ReadablePartial begin)
public Rate withDailyBegin(int begin)
public int getDailyBegin()
public Rate withDailyEnd(org.joda.time.base.AbstractDateTime end)
public Rate withDailyEnd(org.joda.time.ReadablePartial end)
public Rate withDailyEnd(int end)
public int getDailyEnd()
public Rate withNoticeInterval(org.joda.time.Duration interval)
public Rate withNoticeInterval(long hours)
public long getNoticeInterval()
public boolean addHourlyCharge(HourlyCharge newCharge)
public boolean addHourlyCharge(HourlyCharge newCharge,
boolean publish)
public double getTierThreshold()
public Rate withTierThreshold(double tierThreshold)
public double getMinValue()
public Rate withMinValue(double minValue)
public double getMaxValue()
public Rate withMaxValue(double maxValue)
public double getMaxCurtailment()
public Rate withMaxCurtailment(double value)
public boolean isFixed()
public Rate withFixed(boolean fixed)
public double getExpectedMean()
public Rate withExpectedMean(double value)
public TreeSet<HourlyCharge> getRateHistory()
public boolean applies()
public boolean applies(org.joda.time.base.AbstractInstant when)
public boolean applies(double usage)
public boolean applies(double usage,
org.joda.time.base.AbstractInstant when)
public Rate withValue(double value)
public double getValue()
public double getValue(org.joda.time.base.AbstractInstant when)
public String toString()
toString in class Object
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||