loadFactor | R Documentation |
This function computes the load factor and other related statistics for cluster of a study.
loadFactor(
x,
timeStep = "annual",
synthesis = FALSE,
clusterDesc = NULL,
loadFactorAvailable = FALSE,
opts = NULL
)
x |
Object of class |
timeStep |
Desired time step for the result. |
synthesis |
If TRUE, average surpluses are returned. Else the function returns surpluses per Monte-Carlo scenario. |
clusterDesc |
A table created with the function |
loadFactorAvailable |
Should loadFactorAvailable be added to the result? |
opts |
opts where clusterDesc will be read if null based on data |
a data.table of class antaresDataTable
containing the following
columns:
area |
Area name |
cluster |
Cluster name |
mcYear |
Only if |
timeId |
Time id and other time variables |
loadFactor |
Load factor of the cluster. It represent the proportion of the installed capacity of a cluster that is effectively generate Formula: production / (unitcount * nominalcapacity) |
#'
loadFactorAvailable |
Load factor of the cluster. It represent the proportion of the capacity available of a cluster that is effectively generate Formula: production / thermalAvailability |
propHoursMinGen |
Proportion of hours when production is positive and all units of a cluster are either off, either producing at their minimum. This situation occurs when units are kept producing above the optimal level to avoid future startup costs or to satisfy the constraints generated by parameters "Min. up Time" or "Min gen. modulation". Formula: mean(1 if production > 0 and production = max(min.stable.power * unitcount, minGenModulation * nominalcapacity * unitcount) else 0) |
propHoursMaxGen |
Proportion of hours when all units started produce at their maximal capacity. Formula: mean(1 if production > 0 and production = NODU * nominalcapacity * (1 - spinning / 100)) |
## Not run:
# data required by the function
showAliases("loadfactor")
mydata <- readAntares(select = "loadfactor")
loadFactor(mydata, synthesis = TRUE)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.