Open bbartling opened 2 years ago
@bbartling would you be willing to create a PR with changes that have helped you in your usage? I think that would be awesome!
Yes absolutely. Should I fork a copy of this repo?
Yes! :)
Working with @rlutes today here are some notes about issues we ran into on the web app to help generate ILC config.
ALWAYS
and NOT CURTAILED
arguments:
AHU
to AHU VAV
or to VAV Box
COPY CENTER
the MAX and MINs did not appear to copy correctly:MAIN CONFIGURATION
there should be another key available:"control_mode":"comfort"
or "control_mode":"dollars"
or
Add in some logic to the web app we dont need min
and max
curtailment settings when set on comfort
mode
min
and max
associated with offset
. For example:"curtail_setting":{
"point":"Space Temperature Setpoint BAS"
"load":800
"control_method":"offset"
"offset":2
I have to manually ADD in:
"min":
"max":
Not sure if this is a big deal or not but the calculator seems to break point names down by space....im sure the config file generator works just fine but it looks funny if the BAS point names contain spaces, and then the calculator formula is modified after being saved it looks like this:
I had to modify point from BAS to local, so it looks like this:
Remove Javascript alert that appears to prevent the copying of one device config to multiple. I think I am getting an alert that only one config can be copied to another device....where in reality inside a building one config for a VAV box could be copied to 100's
Some more items to add to the deficiencies that @rlutes and I noticed when using the web app to create the ILC config file:
Typo : cluster
needs to be replaced with clusters
In the config that states keys map_key
and dict_name
:
"room_type": {
"operation_type": "mapper",
"map_key": "zone_type",
"dict_name": "Lobby"
},
They are backwards, they need to be:
"dict_name": "zone_type"
"map_key": "Office"
mapper
needs to be mappers
for example: "mappers": {
"zone_type": {
"Private Office": 1,
"Office": 3,
"Conference Room": 1,
"Lobby": 9,
"RestRoom": 9
}
}
}
}
}
More typos in the control config device status keywords incorrect operation
change to condition
for example:
"operation_args": [
device_status_args[
On the web app for directions to help make the config file remove any params that are no longer used on the ILC algorithm, its too confusing for newbies.....
(verify with @rlutes which ones are longer used)
In the main ILC configuration config, the parameter curtailment_confirm should be changed to confirm_time. Also, curtailment_break is no longer used in the code, remove from configuration.
Remove Javascript alert that appears to prevent the copying of one device config to multiple. I think I am getting an alert that only one config can be copied to another device....where in reality inside a building one config for a VAV box could be copied to 100's
@bbartling - Replying to this, is the intent to copy device topic info from one device to multiple? This can be done by performing the copy on all devices wanting to have the values from another device. Please let me know what's desired here. Not exactly sure what you're trying to do.
Is it possible to add more documentation to the ILC README and website to configure the ILC agent for how to get the Master Driver Configuration Store file?
I think the average slow to catch on types like maybe myself this is blatantly not obvious for how to get this file. At least I dont think there is anything I could find in the docs for VOLTTRON and no one else ever asked this on stackoverflow.
Thanks @rlutes for the stackoverflow answer, step one is checked off the list : )