https://github.com/rte-antares-rpackage/antaresRead
Import, manipulate and explore the results of an Antares simulation
https://github.com/rte-antares-rpackage/antaresRead
adequacy bilan electricity energy hdf5 linear-algebra monte-carlo-simulation optimisation previsionnel r rhdf5 rte simulation tyndp
Last synced: 5 months ago
JSON representation
Import, manipulate and explore the results of an Antares simulation
- Host: GitHub
- URL: https://github.com/rte-antares-rpackage/antaresRead
- Owner: rte-antares-rpackage
- Created: 2016-11-15T15:26:32.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-10-16T12:39:49.000Z (6 months ago)
- Last Synced: 2024-10-29T19:53:18.451Z (6 months ago)
- Topics: adequacy, bilan, electricity, energy, hdf5, linear-algebra, monte-carlo-simulation, optimisation, previsionnel, r, rhdf5, rte, simulation, tyndp
- Language: R
- Homepage: https://rte-antares-rpackage.github.io/antaresRead/
- Size: 68.1 MB
- Stars: 13
- Watchers: 7
- Forks: 6
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
- open-sustainable-technology - antaresRead - Import, manipulate and explore the results of an Antares simulation. (Energy Systems / Energy System Modeling Frameworks)
README
![]()
# antaresRead
> Read data from an Antares study with R package 'antaresRead'
[](https://cran.r-project.org/package=antaresRead)
[](https://lifecycle.r-lib.org/articles/stages.html#experimental)
[](https://www.repostatus.org/#active)
[](https://github.com/rte-antares-rpackage/antaresRead/actions/workflows/R-CMD-check.yaml)
[](https://app.codecov.io/gh/rte-antares-rpackage/antaresRead?branch=master)## Installation
You can install the package from CRAN:
```r
install.packages("antaresRead")
```You can also install the last development version from Github:
```r
devtools::install_github("rte-antares-rpackage/antaresRead")
```To display the help of the package and see all the functions it provides, type:
```r
help(package="antaresRead")
```To see a practical example of use of the package, look at the vignette :
```r
vignette("antares")
```Finally, you can download a cheatsheet that summarize in a single page how to use the package: https://github.com/rte-antares-rpackage/antaresRead/raw/master/cheat_sheet/antares_cheat_sheet_en.pdf .
See website for more documentation: https://rte-antares-rpackage.github.io/antaresRead/
## Initialisation
Load the package
```r
library(antaresRead)
```Select an Antares simulation interactively.
```r
setSimulationPath()
```You can also select it programmatically:
```r
setsimulationPath("study_path", simulation)
```The parameter `simulation` can be the name of a simulation, the name of the folder containing the simulation results, or the index of the simulation. `1` corresponds to the oldest simulation, `-1` to the newest one, 0 to the inputs.
## Read data from a simulation
Most data from a simulation can be imported in the R session with function `readAntares()`. It has many parameters that control what data is imported. Here are a few examples:
```r
# Read synthetic results of all areas of a study with hourly time step.
areaData <- readAntares(areas = "all")# Same but with a daily time step:
areaData <- readAntares(areas = "all", timeStep = "daily")# Read all Monte Carlo scenarios for a given area.
myArea <- readAntares(areas = "my_area", mcYears = "all")# Same but add miscelaneous production time series to the result
myArea <- readAntares(areas = "my_area", mcYears = "all", misc = TRUE)# Read only columns "LOAD" and "MRG. PRICE"
areaData <- readAntares(areas = "all", select = c("LOAD", "MRG. PRICE"))
```Functions `getAreas` and `getLinks` are helpful to create a selection of areas or links of interest. Here are a few examples:
```r
# select areas containing "fr"
myareas <- getAreas("fr")# Same but remove areas containing "hvdc"
myareas <- getAreas("fr", exclude = "hvdc")# Get the links that connect two of the previous areas
mylinks <- getLinks(myareas, internalOnly = FALSE)# Get the results for these areas and links
mydata <- readAntares(areas = myareas, links = mylinks)
```## Work with the imported data
When only one type of elements is imported (only areas or only links, etc.) `readAntares()` read antares returns a `data.table` with some extra attributes. A `data.table` is a table with some enhanced capacities offered by package `data.table`. In particular it provides a special syntax to manipulate its content:
```r
name_of_the_table[filter_rows, select_columns, group_by]
```Here are some examples:
```r
# Select lines based on some criteria
mydata[area == "fr" & month == "JUL"]# Select columns, and compute new ones
mydata[, .(area, month, load2 = LOAD^2)]# Aggregate data by some variables
mydata[, .(total = sum(LOAD)), by = .(month)]# All three operations can be done with a single line of code
mydata[area == "fr", .(total = sum(LOAD)), by = .(month)]help(package = "data.table")
```If you are not familiar with package `data.table`, you should have a look at the documentation and especially at the vignettes of the package:
```r
help(package="data.table")
vignette("datatable-intro")
```
## Contributing:Contributions to the library are welcome and can be submitted in the form of pull requests to this repository.
The folder test_case contains a test Antares study used to run automatic tests. If you modifies it, you need to run the following command to include the modifications in the tests:
```r
saveWd<-getwd()
setwd('inst/testdata/')
tar(
tarfile = "antares-test-study.tar.gz",
files = "test_case",
compression = "gzip"
)setwd(saveWd)
```## ANTARES :
Antares is a powerful software developed by RTE to simulate and study electric power systems (more information about Antares here : ).
ANTARES is now an open-source project (since 2018), you can download the sources [here](https://github.com/AntaresSimulatorTeam/Antares_Simulator) if you want to use this package.## License Information:
Copyright 2015-2016 RTE (France)
* RTE: https://www.rte-france.com
This Source Code is subject to the terms of the GNU General Public License, version 2 or any higher version. If a copy of the GPL-v2 was not distributed with this file, You can obtain one at https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html.