-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
46 lines (37 loc) · 1.57 KB
/
config.yaml
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
40
41
42
43
44
45
46
# default values are set in kfw_mastr\utils\config.py --> setup_configs()
# config.yaml needs to be placed in repo root: "\kfw-mastr" (or change it in setup_configs())
RUN_ID: "" # Set to year when calculating solar
REPO_ROOT: "C:\\Users\\fabian.class\\Documents\\kfw\\GermanRenewableEnergy"
NUMBER_THREADS: "8"
INPUT_PATH: "C:\\Users\\fabian.class\\Documents\\kfw\\kfw-mastr\\input" #"C:\\_prog\\_code\\kfw-mastr-data\\input"
OUTPUT_PATH: "C:\\Users\\fabian.class\\Documents\\kfw\\GermanRenewableEnergy\\output" #"C:\\_prog\\_code\\kfw-mastr-data\\output"
# db settings for local use, in line with docker-compose.yml
POSTGRESQL_HOST: "None"
POSTGRESQL_DB_NAME: "kfw-mastr"
POSTGRESQL_USER: "postgres"
POSTGRESQL_PASSWORD: "postgres"
POSTGRESQL_PORT: "5512"
SOFTWARE_VERSION: "1_0_1" # The Version-Number is defined as followes: [Main_Releases]_[algorithm improvement]_[technical improvement]
# OUTFILE_POSTFIX: "" # if commented out, defaults to: datetime.now().strftime("%Y-%m-%d_%H-%M-%S")
CONFLICT_ACTION: "update"
YEARS: "2000"
BATCH_SIZE: "5000"
LIMIT_MASTR_UNITS: "incremental" # Amount of units to be calculated. Set to "incremental" to calculate only those which are not calculated in the actual year
YEAR_SOLAR_ANGLE: "2000"
SAVE_HOURLY_DATA: "False"
# solar
CALC_SOLAR: "True"
SPECIFIC_SOLAR_UNITS: "None"
CURTAILMENT_SOLAR: "None"
# wind
CALC_WIND: "True"
SPECIFIC_WIND_UNITS: "None"
CURTAILMENT_WIND: "None"
# csv export
EXPORT_WIND: "False"
EXPORT_SOLAR: "False"
EXPORT_BATCH_SIZE: "100000"
EXPORT_UNITS: "all"
EXPORT_YEARS: "2000"
AGGREGATE_SOLAR: "False"
AGGREGATE_WIND: "False"