-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
40 lines (31 loc) · 1.11 KB
/
config.py
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
# -*- coding: utf-8 -*-
"""
Created on Mon May 15 09:30:27 2023
@author: Michelle Steenmeijer and Anne Hids (RIVM)
"""
# Input file
inputfile = "MainInputFile.xlsx"
# Select operating system for folder structures (windows or linux)
OS_env = 'win'
#OS_env = 'lin'
# Select the model type: dpmfa or pmfa
#model_type = 'pmfa'
model_type = 'dpmfa'
# Selection of regions
#reg = 'NL'
reg = 'EU'
# When this variable is True and reg = 'EU', NL input will be subtracted from EU input.
NL_nested = True
# Select startyear and endyear
startyear = 1950
endyear = 2050
# Running variables
Speriod = 3 # special period for detailed output printing
RUNS = 10 # number of runs
seed = 2250
nodatayear = 1950 # year for which no data is available, needed for interpolation (has to be smaller than startyear)
# List of input categories
sellist = ['Intentionally produced microparticles', 'Clothing (product sector)',
'Household textiles (product sector)', 'Technical textiles', 'Paint',
'Domestic primary plastic production', 'Import of primary plastics',
'Agriculture', 'Packaging', 'Tyre wear']