get_peak_analysis
Analyze daily maximum and minimum electricity demand patterns and calculate load factors for specified date ranges to identify peak usage trends.
Instructions
Get peak demand analysis over a period.
Analyzes daily maximum and minimum demand to identify patterns and calculate load factors.
Args: start_date: Start date in YYYY-MM-DD format end_date: End date in YYYY-MM-DD format
Returns: JSON string with peak demand analysis.
Examples: Get peak analysis for a week: >>> await get_peak_analysis("2025-10-01", "2025-10-07")
Get peak analysis for a month:
>>> await get_peak_analysis("2025-10-01", "2025-10-31")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | Yes | ||
start_date | Yes |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"type": "string"
},
"start_date": {
"type": "string"
}
},
"required": [
"start_date",
"end_date"
],
"type": "object"
}