https://github.com/hongyuanjia/destep
[WIP] A toolkit to convert 'DeST' models to 'EnergyPlus' models
https://github.com/hongyuanjia/destep
dest energyplus
Last synced: 11 months ago
JSON representation
[WIP] A toolkit to convert 'DeST' models to 'EnergyPlus' models
- Host: GitHub
- URL: https://github.com/hongyuanjia/destep
- Owner: hongyuanjia
- License: other
- Created: 2024-03-19T06:59:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-21T01:37:36.000Z (over 2 years ago)
- Last Synced: 2025-01-21T02:44:51.890Z (over 1 year ago)
- Topics: dest, energyplus
- Language: R
- Homepage: https://hongyuanjia.github.io/destep/
- Size: 3.77 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# destep
[](https://github.com/hongyuanjia/destep/actions/workflows/R-CMD-check.yaml)
> A toolkit to convert 'DeST' models to 'EnergyPlus' models
## Installation
You can install the development version of destep like so:
```r
install.packages("destep",
repos = c(
hongyuanjia = "https://hongyuanjia.r-universe.dev",
cran = "https://cran.r-project.org"
)
)
```
## Supported DeST components
This package is still under heavy development and is not ready for use. Currently, the following components are supported:
* [x] Geometry
* [x] Material
* [x] Construction
* [ ] Internal gains [WIP]
* [ ] Shading
* [ ] HVAC
## Get started
```{r example}
library(destep)
# use a DeST typical building model as an example
path <- download_dest_model("Commercial office A", "Chongqin", 2015, tempdir())
# make sure EnergyPlus IDD file can be found even if EnergyPlus itself was not
# installed
eplusr::use_idd(23.1, download = "auto")
# read the DeST model and convert it to an EnergyPlus model
read_dest(path) |> to_eplus(23.1)
```