Consumption Profile Object
Information about the consumption profile used in the system.
Table of Consumption Profile Object
Value Name | Description | Value Type |
---|---|---|
id | Unique identifier for the consumption profile. | string |
rate | The electricity rate in dollars per kWh | float |
title | Descriptive title for the consumption profile | string |
tariff | Contains details about the electricity tariff. | object |
utility | Details about the utility provider. | object |
annualBill | The estimated annual electricity bill in dollars. | float |
consumption | Monthly energy consumption in kWh, with 12 entries corresponding to each month. | array |
buildingArea | The area of the building in square feet. | integer |
postSolarRate | The electricity rate in dollars per kWh after the installation of the solar system. | float |
postSolarTariff | Tariff details applicable after solar installation (structure similar to tariff object) | object |
postSolarUtility | Utility information post-solar installation | object |
annualConsumption | Total annual energy consumption in kWh. | float |
averageMonthlyBill | The average monthly electricity bill in dollars. | float |
averageUtilityRate | The average electricity rate in dollars per kWh. | float |
averageMonthlyConsumption | The average monthly energy consumption in kWh. | float |
Example of Consumption Profile Object
"consumptionProfile": {
"id": "1a123bcd-10a1-12be-a23e-1234acb53ba4",
"rate": 0.16,
"title": "Default Consumption Profile",
"tariff": {
"lseId": 2654,
"tariffId": 3463777,
"tariffName": "Residential",
"effectiveDate": "2024-02-01",
"masterTariffId": 355
},
"utility": {
"id": "0abcd01c-234b-56cd-7890-123a4b5c67d8",
"name": "Enerflo Power and Light",
"genabilityId": 0001
},
"annualBill": 2295.67005892,
"consumption": [
843.464829,
776.133676,
846.805105,
976.220281,
1256.7218,
1487.6522,
1730.28309,
1647.481535,
1323.235658,
1050.337327,
862.774665,
827.910474
],
"buildingArea": 1704,
"postSolarRate": 0.16009294552803613,
"postSolarTariff": {
"lseId": 2654,
"tariffId": 3463777,
"tariffName": "Residential",
"effectiveDate": "2024-02-01",
"masterTariffId": 355
},
"postSolarUtility": null,
"annualConsumption": 13629.02064,
"averageMonthlyBill": 191.31,
"averageUtilityRate": 0.16,
"averageMonthlyConsumption": 1135.75
}
Updated 3 months ago