You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
see also issue #19. and nilmtk issue #413 "Storing appliance fingerprints/signatures/priors needs definition". Note paragraph numbers should be 1.2.3.4 below
I am trying to work out how to use metadata in conjunction with Hart'85 training and disaggregation, this has led to a closer examination of the metadata definitions to save reinventing any wheels. I have the following questions
Why is dominant appliance required, this would seem logical for sub-meter aimed at measuring a particular appliance, but inappropriate for a whole house meter where you may not know what the dominant appliance is, or it may change with time
dominant_appliance:
(boolean) (required if multiple appliances attached to one meter). Is this appliance responsible for most of the power demand on this meter?
Usage of "on_power_threshold" and "nominal_consumption", (see definitions below) Is it intended that "on_power_threshold" be used to hold a more accurate (measured) on power value for the appliance for use in matching with training results as opposed to the manufacturer's view?
on_power_threshold:
(number) watts. Not required. Default is taken from the appliance type. The threshold (in watts) used to decide if the appliance is on or off.
nominal_consumption:
(dict): Specifications reported by the manufacturer.
on_power: (number) active power in watts when on.
standby_power: (number) active power in watts when in standby.
energy_per_year:
(number) kWh per year
energy_per_cycle:
(number) kWh per cycle
Priors are defined for Appliance Types, rather than for Appliances, which is OK for the way they are defined in terms of statistical relationships between appliance types and between appliance types and general usage patterns. However if my interpretation of "on_power_threshold" above is correct, then this is in fact being used as a defacto appliance specific prior and it would be better to define this in a way that could be used by the disaggregation algorithms, and call it a Prior or Signature or Fingerprint and allow Appliances to link to Priors in a similar way to Appliance Types.
As discussed in nilmtk issue #413 a set of the steady states of power usage of an appliance could constitute a simple Prior or Signature or Fingerprint - to avoid confusion it might be better to call it a Signature rather than a Prior, this would keep the separation between central and dataset metadata. The definition of a Signature might look like this if part of appliance data
signature: (list of dicts) #steady_states this appliance can havesteady_state: (dict of power_values) #one or more of the power characteristics of this stateactive: (number) #active power in Wattsreactive: (number) #reactive power in VARapparent: (number) #apparent power in VA#so we might have
- original_name: Kettledescription: stainless steel 2.5-3kw Hinged locking lid ; 360 degree base; One Cup Indicatormanufacturer: Philipsmodel: HD4671type: kettleroom: kitchenmeters: [1] nominal_consumption: {on_power: 3000}on_power_threshold: 3000instance: 1signature: {active: 2900, reactive:0}
A signature may need to specify a tolerance or distribution of values as discussed for Priors, and a duration range for the steady state.
The text was updated successfully, but these errors were encountered:
Why is dominant appliance required, this would seem logical for sub-meter aimed at measuring a particular appliance, but inappropriate for a whole house meter where you may not know what the dominant appliance is, or it may change with time
All correct. dominant_appliance is only meant to be used for submeters.
Your proposal for a signature looks good. But it would be good to handle multiple states per appliance. But then life gets trickier. Maybe something like this:
see also issue #19. and nilmtk issue #413 "Storing appliance fingerprints/signatures/priors needs definition". Note paragraph numbers should be 1.2.3.4 below
I am trying to work out how to use metadata in conjunction with Hart'85 training and disaggregation, this has led to a closer examination of the metadata definitions to save reinventing any wheels. I have the following questions
A signature may need to specify a tolerance or distribution of values as discussed for Priors, and a duration range for the steady state.
The text was updated successfully, but these errors were encountered: