-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathcreate_chronics.conf
More file actions
39 lines (35 loc) · 876 Bytes
/
create_chronics.conf
File metadata and controls
39 lines (35 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# SPDX-FileCopyrightText: 2014-2026 Institute for Automation of Complex Power Systems, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
nodes = {
file_node = {
type = "file"
format = {
type = "csv"
separator = ","
delimiter = "\n"
skip_first_line = false
header = true
}
uris = ("./Load1.csv", "./SGen1.csv")
uri = "test_uri"
in = {
read_mode = "all"
}
hooks = (
{
type = "create_chronics"
loads_dir = "./"
sgens_dir = "./"
grid = "./grid_file.json"
output = "./test_output"
round_decimals = 3
compress = true
}
)
}
}
paths = (
{
in = "file_node",
}
)