-
Notifications
You must be signed in to change notification settings - Fork 0
/
params.conf
37 lines (34 loc) · 1.11 KB
/
params.conf
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
[sockets]
# Channel through which data is sent from framework to solution
inPort = 5556
inAddress = 127.0.0.1
# Channel through which results are sent from solution to framework
outPort = 5557
outAddress = 127.0.0.1
[results]
# Path to rating file
resultsFile = data/results.json
# Port used for simple HTTP server that serves results to
# visualization web page
resultsHTTPServerPort = 8000
# Shutdown simple HTTP server when framework is finished (True or False)
shutdownHTTPServer = False
[framework]
# List of days to be played back
# values must be in range [1,5]
# empty list will play back all 5 days
# list defines playback order
days = []
# Number of data samples per hour
sampleRate = 60
# Bootup time of framework (in seconds)
frameworkLapseTime = 2
# Maximum time that framework waits for results from solution (in seconds).
maxResultsWait = 2
# Debug messages in output of framework (True or False)
DBG = True
# Does framework wait to send data infinitely (True or False)? If
# DBGphysics is True then maxResultsWait is ignored.
DBGPhysics = True
profileFile = data/profiles.json
physicsInit = data/physics_init.json