Meter_gen Config consumptions - gridpocket/project-iostack GitHub Wiki

This meter generator use a consumptions.json file to generate data as realistic as possible.

Consumption is calculated by differents parameters:

  • Time (4 possibilities: 00h to 06h, 06h to 9h, 9h to 17h and 17h to 24h)
  • Days (2 possibilities: Working day (Monday to Friday) or Weekend (Saturday & Sunday))
  • Season (2 possibilities: Hot season (May to October), Cold Season (November to April))
  • Size of accommodations (4 possibilites: 20m², 50m², 70m², 100m²)
  • Type of consumption (2 possibilities: Electric or not (gas))

File content sample

{
  "elec":{
    "s20":{
      "coldS":{
        "wDay":{
          "Night":{
            "avg":2996,
            "stddev":30
          },
          "Morning":{ .. },
          "Day":{ .. },
          "Evening":{ .. }
        },
        "wEnd":{ ... }
      },
      "hotS":{ .... }
    },
    "s50": { ..... },
    "s70": { ..... },
    "s100":{ ..... }
  },
  "gas":{ ...... }
}
Key Parent bloc Description
elec root Data from houses with electrical heater
gas root Data from houses without electrical heater
s20 elec, gas Data from houses of 20m² surface
s50 elec, gas Data from houses of 50m² surface
s70 elec, gas Data from houses of 70m² surface
s100 elec, gas Data from houses of 100m² surface
coldS s20, s50, s70, s100 Data from cold season (November to April)
hotS s20, s50, s70, s100 Data from hot season (Mat to October)
wDay coldS, hotS Data from working days (Monday to Friday)
wEnd coldS, hotS Data from weenend days (Saturday & Sunday)
Night wDay, wEnd Data from Night (00h to 05h)
Morning wDay, wEnd Data from Morning (06h to 08h)
Day wDay, wEnd Data from Day (09h to 16h)
Evening wDay, wEnd Data from Evening (17h to 23h)
avg Night, Morning, Day, Evening Average value
stddev Night, Morning, Day, Evening Standard deviation value
⚠️ **GitHub.com Fallback** ⚠️