-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.py
More file actions
34 lines (28 loc) · 817 Bytes
/
config.py
File metadata and controls
34 lines (28 loc) · 817 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
# -*- coding: utf-8 -*-
"""
This file is used to configure the test case.
"""
def get_config():
'''Returns the configuration structure for the test case.
Returns
-------
config : dict()
Dictionary contatinin configuration information.
{
'fmupath' : string, location of model fmu
'step' : int, default control step size in seconds
}
'''
config = {
'fmu1':{
# Enter configuration information
'fmupath' : '/usr/testcases/testcase/models/fmu1/wrapped.fmu',
'name' : 'LargeOffice',
'step' : 60},
'fmu2':{
# Enter configuration information
'fmupath' : '/usr/testcases/testcase/models/fmu2/wrapped.fmu',
'name' : 'LargeOfficeFDD',
'step' : 60}
}
return config