22 lines
524 B
Plaintext
22 lines
524 B
Plaintext
def get_paths():
|
|
return [
|
|
"[default]simulator/DOAS/DOAS1",
|
|
"[default]simulator/DOAS/DOAS2",
|
|
"[default]simulator/DOAS/DOAS3",
|
|
"[default]simulator/DOAS/DOAS4",
|
|
"[default]simulator/DOAS/DOAS5
|
|
]
|
|
def get_config():
|
|
return {
|
|
'OAD':'/Outdoor Air Dewpoint',
|
|
'BP':'/Building Pressure',
|
|
'SAT':'/Supply Air Temperature',
|
|
'SAD':'/Supply Air Dewpoint',
|
|
'Alm':'/AlarmSummary/Highest Active Priority'
|
|
}
|
|
def get_destination():
|
|
return "[default]System/DataTables/STU/Data"
|
|
|
|
def get_type():
|
|
return "Objects/Air/STU"
|
|
|