Learn R Programming

antaresProcessing (version 0.18.3)

thermalGroupCapacities: compute thermal capacities from study

Description

compute thermal capacities from study

Usage

thermalGroupCapacities(opts = simOptions())

Value

A data.table, data.frame class object containing computed result by areas/clusters

Arguments

opts

simOptions obtain which setSimulationPath

Examples

Run this code
# \donttest{
library(antaresRead)
# with study test for example (study is in package antaresRead)
sourcedir <- system.file("testdata", package = "antaresRead")

# untar study in temp dir
path_latest <- file.path(tempdir(), "latest")
untar(file.path(sourcedir, "antares-test-study.tar.gz"), exdir = path_latest)

study_path <- file.path(path_latest, "test_case")

# set path to your Antares simulation
opts <- setSimulationPath(study_path)

mydata <- readAntares( areas = "all",
                       mcYears = "all", showProgress = FALSE)

# long to wide format
res <- thermalGroupCapacities(opts = opts)
# }

Run the code above in your browser using DataLab