get_grid_stability
Analyze grid stability by comparing synchronous generation inertia with variable renewables to assess stability risks for specific dates and times.
Instructions
Get grid stability metrics at a specific time.
Analyzes synchronous generation (provides inertia) vs variable renewables (no inertia) to assess grid stability risk.
Args: date: Date in YYYY-MM-DD format hour: Hour in HH format (00-23, default: 12)
Returns: JSON string with grid stability analysis.
Examples: Get grid stability at noon: >>> await get_grid_stability("2025-10-08", "12")
Check overnight stability:
>>> await get_grid_stability("2025-10-08", "02")
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | Yes | ||
hour | No | 12 |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"type": "string"
},
"hour": {
"default": "12",
"type": "string"
}
},
"required": [
"date"
],
"type": "object"
}