R/updateGeneralSettings.R
updateGeneralSettings.Rd
Update general parameters of an Antares study
updateGeneralSettings(
mode = NULL,
horizon = NULL,
nbyears = NULL,
simulation.start = NULL,
simulation.end = NULL,
january.1st = NULL,
first.month.in.year = NULL,
first.weekday = NULL,
leapyear = NULL,
year.by.year = NULL,
derated = NULL,
custom.scenario = NULL,
custom.ts.numbers = deprecated(),
user.playlist = NULL,
filtering = NULL,
active.rules.scenario = NULL,
generate = NULL,
nbtimeseriesload = NULL,
nbtimeserieshydro = NULL,
nbtimeserieswind = NULL,
nbtimeseriesthermal = NULL,
nbtimeseriessolar = NULL,
refreshtimeseries = NULL,
intra.modal = NULL,
inter.modal = NULL,
refreshintervalload = NULL,
refreshintervalhydro = NULL,
refreshintervalwind = NULL,
refreshintervalthermal = NULL,
refreshintervalsolar = NULL,
readonly = NULL,
geographic.trimming = NULL,
thematic.trimming = NULL,
opts = antaresRead::simOptions()
)
Economy, Adequacy, Draft.
Reference year (static tag, not used in the calculations)
Number of Monte-Carlo years that should be prepared for the simulation (not always the same as the Number of MC years actually simulated, see 'selection mode' below).
First day of the simulation (e.g. 8 for a simulation beginning on the second week of the first month of the year)
Last day of the simulation (e.g. 28 for a simulation ending on the fourth week of the first month of the year)
First day of the year (Mon, Tue, etc.).
Actual month by which the Time-series begin (Jan to Dec, Oct to Sep, etc.)
In economy or adequacy simulations, indicates the frame (Mon- Sun, Sat-Fri, etc.) to use for the edition of weekly results.
(TRUE/FALSE) indicates whether February has 28 or 29 days.
(False) No individual results will be printed out, (True) For each simulated year, detailed results will be printed out in an individual directory7 : Study_name/OUTPUT/simu_tag/Economy /mc-i-number
See Antares General Reference Guide.
See Antares General Reference Guide (see link below). Replace custom.ts.numbers.
See Antares General Reference Guide (see link below). Replaced by custom.scenario.
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
See Antares General Reference Guide (see link below).
logical
indicates whether to store the results for all time spans (FALSE) or for custom time spans (TRUE)
See Antares General Reference Guide (see link below).
List of simulation parameters returned by the function
antaresRead::setSimulationPath()
An updated list containing various information about the simulation.
if (FALSE) { # \dontrun{
# Update number of Monte-Carlo years
updateGeneralSettings(nbyears = 42)
# Use a vector to update a parameter that
# can take multiple values
updateGeneralSettings(generate = c("thermal", "hydro"))
} # }