Technical Methods: Transmission Network Analysis of India
1. Network Topology Construction
The transmission network graph \(G = (V, E)\) is constructed from OpenStreetMap (OSM) geospatial data, where vertices \(V\) represent electrical buses (substations, junction points) and edges \(E\) represent transmission lines and HVDC links. We restrict to the high-voltage (HV) and extra-high-voltage (EHV) system: \(V_\text{nom} \geq 132\) kV.
1.1 Bus Identification
Substation buses. OSM polygons and nodes tagged power=substation with voltage \(\geq\) 132,000 V. Polygon geometries are reduced to their centroid. These form the primary bus set \(V_\text{sub}\).
Junction buses. Line endpoints shared by two or more transmission lines and located >2 km from any substation bus.
Synthetic buses. Line endpoints that fall beyond the snap tolerance \(\delta\) from any existing bus, necessary to maintain network connectivity where OSM data has coordinate misalignment.
1.2 Endpoint Snapping & Bus Merging
Each line endpoint is assigned to its nearest bus using a \(k\)-d tree (scipy.spatial.cKDTree) with snap tolerance \(\delta = 1.0\) km. Buses within merging radius \(\rho = 0.5\) km are consolidated using a union-find data structure. Self-loops are removed.
1.3 Connected Component Pruning
The graph is decomposed into connected components using NetworkX. Components with \(|V_c| < 3\) buses are classified as stubs and removed. Generators attached to pruned buses are remapped to the nearest bus in the retained network. The largest connected component (7,452 buses) forms the main synchronous sub-network.
1.4 Line Length Computation
Physical line length is computed as the great-circle (haversine) distance, with a minimum floor of 1.0 km to prevent near-zero impedance:
where \(R = 6{,}371\) km is Earth's mean radius, and \((\phi, \lambda)\) are latitude and longitude in radians.
2. Electrical Parameter Assignment
2.1 Conductor Type Mapping
Each AC line is assigned a standard conductor type from the PyPSA/IEC line type database based on its voltage class, reflecting typical Indian transmission practice (CEA/PGCIL design standards):
| \(V_\text{nom}\) (kV) | Conductor | \(S_\text{nom}\)/ckt (MW) | \(r'\) (Ω/km) | \(x'\) (Ω/km) | \(b'\) (μS/km) |
|---|---|---|---|---|---|
| 765 | Al/St 560/50 quad-bundle | 2,400 | 0.006 | 0.197 | 4.56 |
| 400 | Al/St 240/40 twin-bundle | 1,700 | 0.030 | 0.246 | 3.15 |
| 220 | Al/St 240/40 single | 520 | 0.060 | 0.301 | 2.48 |
| 132 | Al/St 240/40 single | 310 | 0.060 | 0.301 | 2.48 |
2.2 Multi-Circuit Correction
When the OSM cables tag is available, the number of circuits is \(n_c = \max(1, \lfloor\text{cables}/3\rfloor)\). Line parameters are adjusted:
2.3 Thermal Rating Floor
OSM frequently lacks cable-count metadata, so we apply voltage-class-specific \(S_\text{nom}\) floors based on CEA/PGCIL typical values:
where \(S_\text{floor} = \{765\text{ kV}: 2400,\; 400\text{ kV}: 1040,\; 220\text{ kV}: 520,\; 132\text{ kV}: 310\}\) MW.
3. Generation and Demand Modeling
3.1 Generator Data
Plant-level generation capacity is sourced from Global Energy Monitor (GEM) power plant trackers, providing 5,710 individual facilities across 8 fuel types. Each generator is assigned to the nearest network bus via \(k\)-d tree spatial lookup. Total installed capacity: 471.5 GW.
| Carrier | Count | Capacity (GW) | Source |
|---|---|---|---|
| Coal | 1,247 | 249.9 | GEM Global Coal Plant Tracker |
| Solar PV | 2,341 | 99.4 | GEM Global Solar Power Tracker |
| Hydro | 478 | 44.2 | GEM Global Hydropower Tracker |
| Wind | 1,089 | 38.9 | GEM Global Wind Power Tracker |
| Gas | 251 | 23.9 | GEM Global Gas Plant Tracker |
| Nuclear | 24 | 8.2 | GEM Global Nuclear Power Tracker |
| Oil | 183 | 4.3 | GEM Global Gas/Oil Tracker |
| Bioenergy | 97 | 2.7 | GEM Bioenergy Tracker |
3.2 State-Level Demand Allocation
Peak demand is specified at the state level from CEA Annual Report FY2024-25 (all-India peak: 249,856 MW). Each state's demand \(D_s\) is distributed across buses using voltage-weighted allocation:
Higher-voltage buses (400/765 kV) receive proportionally larger loads, reflecting the grid hierarchy. Total allocated demand: 247.0 GW.
4. Power Flow Computation
4.1 DC Power Flow Approximation
We use the DC (linearized) power flow model, standard for transmission planning. The full AC power flow equations for line \(ij\) are:
The DC approximation applies: (i) \(|V_i| \approx 1\) p.u., (ii) \(\sin\theta_{ij} \approx \theta_{ij}\), \(\cos\theta_{ij} \approx 1\), and (iii) \(G_{ij} \ll B_{ij}\). This yields:
Line power flow is determined by the voltage angle difference scaled by susceptance:
Power distributes through all parallel paths in inverse proportion to their reactance (Kirchhoff's Voltage Law). This is physically correct for a synchronous AC grid.
4.2 Merit-Order Economic Dispatch (SCED)
Generation dispatch is determined by a merit-order stack, dispatching generators in ascending order of marginal cost until total generation equals total demand.
Phase 1 (must-run): RE at peak-hour CFs, hydro at 70%, nuclear at 90%. Total: 111.6 GW.
Phase 2 (thermal): Remaining 135.4 GW filled in merit order: bioenergy (&rupee;2.0/kWh) → coal (&rupee;2.5) → gas (&rupee;4.5) → oil (&rupee;8.0).
| Carrier | Dispatch (GW) | Capacity (GW) | CF (%) | Variable cost |
|---|---|---|---|---|
| Coal | 132.6 | 249.9 | 53.1 | ₹2.50/kWh |
| Solar PV | 59.6 | 99.4 | 60.0 | ₹0.00/kWh |
| Hydro | 30.9 | 44.2 | 70.0 | ₹0.00/kWh |
| Wind | 13.6 | 38.9 | 35.0 | ₹0.00/kWh |
| Nuclear | 7.4 | 8.2 | 90.0 | ₹0.25/kWh |
| Bioenergy | 2.7 | 2.7 | 100.0 | ₹2.00/kWh |
| Gas | 0.0 | 23.9 | 0.0 | ₹4.50/kWh |
| Oil | 0.0 | 4.3 | 0.0 | ₹8.00/kWh |
4.3 Inter-Regional Power Transfer
The merit-order dispatch creates spatial mismatches between generation and load. Net transfer for state \(s\):
Key exporters: Rajasthan +14.2 GW, Chhattisgarh +9.7 GW, Odisha +6.8 GW. Key importers: Delhi −7.9 GW, Punjab −7.5 GW, Haryana −7.3 GW. These transfers drive flows through inter-regional 765/400 kV corridors.
4.4 Slack Bus Selection
The slack bus (\(\theta = 0\)) is placed at the thermal generator with the highest capacity × bus-degree score:
4.5 Line Loading
The loading ratio for each line:
Lines with \(\ell > 1.0\) are overloaded and would trip on overcurrent protection, require emergency rating (STE), or necessitate generation re-dispatch.
5. N-1 Contingency Analysis
5.1 Branch Outage Distribution Factors
N-1 security is assessed using the BODF matrix, derived from the PTDF matrix \(\mathbf{H} \in \mathbb{R}^{|E| \times |V|}\):
The BODF element \(D_{\ell k}\) gives the fraction of flow on outaged line \(k\) that redistributes to line \(\ell\):
5.2 Post-Contingency Flow
When line \(k\) trips, the post-contingency flow on line \(\ell\) is:
This avoids re-solving \(\mathbf{B}\boldsymbol{\theta}\) for each contingency, reducing cost from \(O(N_c \cdot |V|^3)\) to \(O(|E|^2 + N_c \cdot |E|)\).
5.3 Violation Screening
We screen the top 50 most-loaded lines. A violation is recorded when:
Infinite post-contingency flows (\(|D_{\ell k}| \to \infty\), indicating islanding) are excluded.
6. Transmission Expansion Planning
6.1 Spatial Clustering
The full network (7,746 buses) is reduced to \(k = 200\) clusters using weighted K-means. Sample weights are proportional to load + generation at each bus:
6.2 Line Aggregation
Lines connecting the same cluster pair are aggregated. Thermal ratings sum; impedances average:
6.3 LOPF Formulation
The expansion problem minimizes total system cost (dispatch + annualized investment):
Solved with HiGHS v1.13.1 via linopy v0.6.5. Corridors where optimal \(s_\text{nom}\) exceeds existing capacity are expansion candidates.
7. Computational Environment
| Component | Version | Role |
|---|---|---|
| PyPSA | 1.1.2 | Power system modeling, LPF, LOPF, network I/O |
| linopy | 0.6.5 | Linear optimization interface |
| HiGHS | 1.13.1 | Open-source LP/MIP solver |
| earth-osm | 3.x | OSM power infrastructure extraction |
| atlite | 0.2.x | ERA5-based renewable CF computation |
| scikit-learn | 1.x | K-means clustering for network reduction |
| NumPy / SciPy | ≥1.24 | Linear algebra, k-d trees, sparse matrices |
| pandas / GeoPandas | ≥2.0 | Tabular and geospatial data |
| NetworkX | ≥3.0 | Graph connectivity analysis |
Full pipeline completes in ~70 seconds on a single CPU core. Reproducible via python src/build_network.py && python src/analyze_network.py.
8. Assumptions, Limitations & Caveats
DC approximation. Ignores reactive power, voltage magnitude variations, \(I^2R\) losses, transformer taps, and phase-shifting transformers. Error typically <5% for EHV (\(\geq\)220 kV) lines with \(\theta_{ij} < 10°\).
Single snapshot. Peak-demand operating point only. Time-series with 8,760 hourly snapshots and storage dispatch would improve robustness.
OSM data completeness. Coverage is incomplete for rural 132 kV lines. voltage and cables tags are not always populated. Should be validated against CEA/CTU official maps.
Load allocation. Voltage-weighted distribution within states. Actual allocation depends on distribution substation locations and industrial/urban demand patterns not captured in OSM.
Generator siting. Plants snapped to nearest bus, which may not reflect the actual grid connection point.
Protection and stability. No transient, voltage, or frequency stability analysis. BODF-based N-1 captures steady-state thermal violations only.
Clustered expansion. 200-bus aggregation can mask line-level bottlenecks. Results should be disaggregated before informing investment decisions.
References
[1] T. Brown, J. Hörsch, D. Schlachtberger, "PyPSA: Python for Power System Analysis," J. Open Research Software, vol. 6, no. 4, 2018.
[2] B. Stott, J. Jardim, O. Alsac, "DC Power Flow Revisited," IEEE Trans. Power Systems, vol. 24, no. 3, pp. 1290–1300, 2009.
[3] Central Electricity Authority, "Annual Report 2024-25," Government of India.
[4] Global Energy Monitor, "Global Power Plant Trackers," 2024.
[5] Q. Huangfu, J.A.J. Hall, "Parallelizing the dual revised simplex method," Math. Prog. Comp., vol. 10, pp. 119–142, 2018.
[6] F. Hofmann et al., "atlite: A Lightweight Python Package for Calculating Renewable Power Potentials," JOSS, vol. 6, no. 62, 2021.
[7] S. Pfenninger et al., "The importance of open data and software," Energy Policy, vol. 101, pp. 211–215, 2017.
[8] Survey of India, Official Administrative Boundaries of India.
[9] A.J. Wood, B.F. Wollenberg, G.B. Sheblé, Power Generation, Operation, and Control, 3rd ed., Wiley, 2014.
Data Sources & Provenance
Technical documentation of every data layer used in this transmission network visualization. Each source is characterized by its upstream origin, extraction pipeline, update cadence, schema, coverage statistics, and known quality limitations.
- Upstream
- OpenStreetMap contributors (crowdsourced, CC-BY-SA 2.0 + ODbL). No single authoritative editor for India's power network. The MapYourGrid initiative (mapyourgrid.org) targets South Asia neighbors (Bangladesh, Nepal, Pakistan, Sri Lanka) but has not yet systematically mapped India.
- Intermediary
- Geofabrik daily PBF extracts (
download.geofabrik.de/asia/india-latest.osm.pbf). Updated daily ~21:00 CET. Typical lag from OSM edit to Geofabrik availability: ~24 hours. India PBF is a sub-extract of the Asia continent file, split using Osmium + cascading polygon boundaries derived from OSM administrative relations. - Extraction tool
- earth-osm v3.x (MIT license,
pip install earth-osm). Reads Geofabrik PBF, filters bypower=*primary tag, extracts all sub-tags via the Taginfo API schema. Output columns are prefixedtags.*. - Output schema
-
tags.voltagetags.frequencytags.cablestags.circuitstags.wirestags.operatortags.nametags.generator:sourcetags.substation+ full geometry (LineString, Polygon, Point) - Features extracted
power=linepower=substationpower=generator- Region filter
region_list=['india'], source:geofabrik- Post-extraction filter
- Lines & substations:
max(voltage) ≥ 132,000 V. Generators:generator:source ∈ {solar, wind}. HVDC detected viafrequency=0ordc_linetag.
| Voltage Band | Route-km | Share | Assessment vs. CEA ckm |
|---|---|---|---|
| 550 kV+ (765 kV AC + HVDC) | 44,629 | 9.5% | ~74,000 ckm official; factor ~1.7x (double-circuit) |
| 330–549 kV (400 kV class) | 122,769 | 26.1% | ~206,000 ckm; factor ~1.7x |
| 220–329 kV | 115,867 | 24.6% | ~211,000 ckm; factor ~1.9x |
| 132–219 kV | 111,043 | 23.6% | State-managed sub-transmission; not centrally reported |
| 52–131 kV | 64,746 | 13.8% | State-level only; likely incomplete |
| No voltage tag | 10,205 | 2.2% | Needs repair / inference from spatial proximity |
| Total | 470,410 | 100% | — |
| RE Source | Mapped Plants | Capacity (MW) |
|---|---|---|
| Solar | 2,748 | 22,826 |
| All power plants | 3,772 | 339,708 |
cables, circuits, wires, frequency, and operator are present on a variable subset. No systematic community validation effort has been conducted for India (OSM wiki Power_networks/India page has multiple TODO sections). Regional gaps are most likely in NE India, J&K, and hilly states where both physical access and contributor density is low.
atlite (PyPSA ecosystem). Grid resolution is 0.25° (~28 km). Solar uses CSi panel model with latitude-optimal tilt; wind uses Vestas V112 3MW turbine power curve. CFs represent mean values for January 2024.
- URL
- openinframap.org/stats/area/India
- Data source
- 100% OpenStreetMap (no supplementary datasets)
- Pipeline
- Imposm3 (PBF → PostgreSQL/PostGIS) → Tegola (vector tile server) → MapLibre GL JS (frontend)
- Update cadence
- Minutely diff updates from OSM replication feed
- Limitation
- Visualization / completeness assessment tool only — not an authoritative data source. Coverage reflects OSM contributor activity, not ground truth.
- Publisher
- Central Electricity Authority (cea.nic.in), Ministry of Power, Government of India
- Report types
-
Substations (220 kV & above): completion during year, completion during month, construction progress, executive summary, growth summary
Transmission Lines (220 kV & above): same structure
Transmission Schemes: monthly progress of central funded schemes; TBCB route projects - Table columns
Sl.NoName/SchemeVoltage Ratio (kV/kV)Capacity (MW/MVA)Executing AgencyMonth of Completion- Metrics
- Transmission line length in circuit-km (ckm); substation capacity in MVA. Reported by voltage class (220 kV, 400 kV, 765 kV) and by implementing agency (PGCIL, state utilities, JVs, private).
- Format
- PDF tables + some Excel downloads. Also available via NPP dashboard (npp.gov.in).
- Update frequency
- Monthly (latest available: March 2025)
- Archive depth
- Monthly Reports Archive organized by FY and month
- Geospatial data
- None. No coordinates, no shapefiles, no GIS layers. Aggregate ckm and MVA only.
- Use in this tool
- Validation of OSM extraction completeness: compare OSM route-km × conversion factor (1.5–2.0) against CEA official ckm by voltage class.
- Publisher
- Central Electricity Authority, published January 2024
- Document
- Draft National Electricity Plan Volume II — Transmission
- Scope
- ~170 ISTS (Inter-State Transmission System) transmission schemes across two planning horizons: 2022–27 and 2027–32
- Annexure table format
-
Scheme Name(textual route: “Substation A – Substation B”)Voltage (kV)Length (ckm)Capacity (MVA)Implementing AgencyTarget Year - Geospatial data
- None. Routes described textually as substation-to-substation corridors, not as georeferenced coordinates.
- Format
- PDF only. No machine-readable annex (no CSV, no shapefile).
- Parsing strategy
-
1. Extract annexure tables via
pdfplumber/Camelot
2. Parse substation endpoint names from scheme name field (regex pattern for “A – B” / “A to B”)
3. Geocode substation names via Nominatim (OpenStreetMap geocoder) with India bounding box bias
4. Generate LineString geometries as great-circle arcs between geocoded endpoints
5. Outputlines_planned.geojsonwith full scheme metadata
- Publisher
- Central Transmission Utility of India Limited (ctuil.in)
- Report series
- ISTS Rolling Plans (annual), e.g. FY 2026–27 through 2030–31; Interim Rolling Plan 2030–31; Network Plan 2024–25
- Content per scheme
-
Scheme NameVoltage (kV)Length (ckm)Transformation Capacity (MVA)End Points / CorridorImplementing AgencyTarget Year / PhaseStatus - Format
- PDF only. No API, no bulk download, no machine-readable export.
- Update frequency
- Annual rolling plans + interim updates
- FY 2024–25 snapshot
- 99 schemes, ~19,856 ckm, ~2,35,810 MVA
- Geospatial data
- None. Same textual substation-to-substation format as CEA NEP.
- Publisher
- REC Transmission Projects Company Limited (RECTPCL), Ministry of Power. Launched August 2016.
- URL
- tarang.website
- Content
-
Under bidding: 91 schemes, 19,387 ckm, 262,620 MVA
Under construction: 2,221 elements, 79,177 ckm, 341,981 MVA
Completed (FY 2022–23): 291 elements, 10,691 ckm, 59,493 MVA
Also: Green Energy Corridor, MIS reports, NIT/bid documents - Update frequency
- Monthly progress updated on the 5th of each month for the previous month. NITs and bids uploaded as received.
- Format
- Web portal with interactive map interface. Mobile apps (iOS, Android, Windows). No documented API.
- Data extraction
- Would require reverse-engineering XHR/API calls from the web app. Map interface contains project-level geographic markers but no bulk GeoJSON/shapefile export.
- Publisher
- Prayas (Energy Group) with Idam Infra; CEA provides guidance
- URL
- indiatransmission.org
- Content
- 90+ interactive charts across 6 modules covering ISTS scheme progress, transfer capabilities, corridor capacities, congestion, curtailment, and tariff data across 11 states
- Modules
-
PolicyCentral transmission policies & regulations
CommercialBidding documents & procurement
RegulatoryCentral and state regulations
TariffISTS and InSTS tariffs, open access charges
PerformanceTransfer capability, congestion, curtailment
PlanningInter-regional, intra-regional, intra-state; monthly/quarterly/annual progress - Planning data
- Transmission line length (ckm) and substation capacity (MVA) since January 2012. By ownership (central, state, private) and voltage. Entity-wise quarterly progress. Green Energy Corridor, CEA NEP 2024, cross-border transmission, GNA.
- Format
- Web-based interactive charts and documents. No CSV/Excel/API export.
- Publisher
- Power Grid Corporation of India (powergrid.in); also at powermin.gov.in
- Content
- ~260+ named substations organized by operating region: SR-I, SR-II, ER-I, ER-II, NR-I, NR-II, NR-III, WR-I, WR-II, NER, Odisha
- Fields
- Substation name, state, commissioning date. No coordinates, no voltage class in public table.
- Format
- HTML table + PDF
- Geocoding strategy
- Batch geocode substation names via Nominatim (OpenStreetMap geocoder) or Google Maps Geocoding API with “substation, India” bias. Generate reference point layer for cross-validation against OSM-extracted substations.
- OGD Platform
- data.gov.in lists electricity substations but dataset API availability is limited.
| Source | Update Frequency | Format | Structured Export | Geospatial | Planned Lines | Rating |
|---|---|---|---|---|---|---|
| OSM / earth-osm | Daily (Geofabrik) | PBF → GeoJSON/CSV | Yes | Yes | No | 5/5 |
| OpenInfraMap | Minutely (OSM diffs) | Vector tiles | Via OSM/Overpass | Yes | No | 4/5 |
| CEA Monthly Reports | Monthly | PDF + Excel | Partial (Excel) | No | No | 3/5 |
| CEA NEP Vol II | Per plan cycle (~5 yr) | No (requires parsing) | No | Yes (~170 schemes) | 3/5 | |
| CTUIL Rolling Plans | Annual | No | No | Yes | 3/5 | |
| TARANG | Monthly (5th) | Web portal | No (scrape required) | Partial (map pins) | Yes | 2.5/5 |
| indiatransmission.org | Variable | Web charts | No | No | Via CEA NEP | 3/5 |
| PGCIL Substations | Periodic | HTML/PDF | No | No (geocodable) | No | 2/5 |
Policy Insights for Transmission Planning
1. Renewable Integration and Transmission Adequacy
1.1 Current RE Penetration vs. National Targets
India achieved 271.96 GW of non-fossil installed capacity by January 2026, representing over 50% of total installed capacity. This milestone was reached five years ahead of the 2030 NDC target. However, the transmission network must support a further doubling to the 500 GW target by 2030, and CEA's National Electricity Plan anticipates 613 GW of RE capacity requiring grid evacuation by 2032.
Our network model captures 99.4 GW solar and 38.9 GW wind capacity connected to the HV/EHV grid. The spatial distribution reveals concentration in Rajasthan (34 GW solar), Gujarat (13.8 GW solar, 11 GW wind), Tamil Nadu (7.5 GW solar, 6.5 GW wind), and Karnataka (9.6 GW solar, 5.3 GW wind). These states will require the largest incremental evacuation capacity.
1.2 RE Evacuation Corridors
The DC power flow analysis identifies the primary interstate transfer corridors that will bear incremental RE evacuation loads:
| Corridor | Direction | Current Loading | Key Risk |
|---|---|---|---|
| Rajasthan → Haryana/Delhi | North | High (50-80%) | 765 kV corridors approach thermal limits during solar noon |
| Gujarat → Maharashtra | South-East | Medium-High | Wind variability creates ramp events on 400 kV ties |
| Tamil Nadu → Karnataka/Kerala | West | Medium | Southern grid islanding risk during RE curtailment |
| Chhattisgarh → UP/MP | North | High | Coal-heavy export corridor; loading drops with coal retirement |
| Odisha → Andhra/Telangana | South | Medium-High | Existing 400/765 kV lines near capacity; HVDC overlay planned |
2. Transmission Expansion Requirements
2.1 NEP-Transmission Plan Alignment
The National Electricity Plan Volume II (Transmission) allocates approximately ₹9.15 lakh crore for transmission expansion through 2031-32. This includes 191,474 circuit-km of new lines at 220 kV and above, and 1,274 GVA of transformation capacity. Nine new HVDC systems totaling 33.25 GW are planned for bulk RE evacuation.
Our LOPF-based capacity expansion analysis can be directly compared against NEP-T corridor-level recommendations to identify gaps or over-provisions. The clustered 500-bus model in the Scenario Engine enables rapid sensitivity analysis of different RE deployment scenarios against transmission investment requirements.
2.2 Inter-Regional Transfer Capacity
Inter-regional transfer capacity is planned to increase from 119 GW (current) to 168 GW by 2032. The five inter-regional power exchanges (NR-WR, NR-SR, WR-SR, ER-NR, ER-SR) must accommodate increasing west-to-east and south-to-north RE flows that reverse historical coal-export patterns.
| Region Pair | Current Capacity | Planned 2032 | Driving Factor |
|---|---|---|---|
| WR → NR | ~26 GW | ~40 GW | Solar from Rajasthan/Gujarat to Delhi/UP |
| SR → WR | ~18 GW | ~28 GW | Wind from TN/KA to MH/GJ load centers |
| ER → NR | ~15 GW | ~22 GW | Coal from CG/JH, declining with transition |
| NER → ER | ~5 GW | ~12 GW | Hydro from Arunachal/Sikkim |
| NR → SR | ~10 GW | ~18 GW | Balancing corridor for pan-India dispatch |
3. Coal Transition and Grid Stability
3.1 Role of Thermal Generation in Grid Balancing
India's current evening peak (19:00-21:00 IST) is predominantly served by coal generation. Our SCED dispatch model shows coal providing approximately 198 GW (80%) of evening peak dispatch, with pithead states (Chhattisgarh, Jharkhand, Odisha, West Bengal, Madhya Pradesh) exporting heavily to deficit coastal and northern states.
Any coal retirement pathway must account for this spatial dependency. The Coal Transition tab in the Scenario Engine allows planners to simulate retirement scenarios (0-100% reduction) and observe the resulting generation gap, interstate transfer reversal, and line loading redistribution in real time.
3.2 Renewable Consumption Obligation (RCO) Trajectory
The Ministry of Power's RCO framework mandates progressively rising renewable consumption percentages, replacing the earlier RPO:
| Year | Total RCO | Wind RCO | Solar RCO | Distributed RE | Hydro |
|---|---|---|---|---|---|
| 2024-25 | 29.91% | 6.94% | 10.48% | 1.50% | 0.35% |
| 2025-26 | 33.01% | 8.28% | 11.78% | 2.00% | 0.67% |
| 2026-27 | 35.95% | 9.49% | 12.78% | 2.50% | 1.29% |
| 2027-28 | 38.81% | 10.53% | 13.56% | 3.00% | 2.82% |
| 2028-29 | 41.36% | 11.14% | 14.16% | 3.50% | 3.66% |
| 2029-30 | 43.33% | 11.63% | 14.60% | 4.50% | 3.60% |
Meeting these targets requires not only RE capacity addition but also transmission infrastructure capable of delivering renewable energy from resource-rich regions to obligated entities across all states. Our model directly quantifies the transmission loading implications of different RCO compliance scenarios.
4. Energy Storage and Flexibility Requirements
4.1 Grid Flexibility for High RE Penetration
India plans 174 GW of energy storage capacity by 2035, including pumped storage hydro (11,870 MW under construction) and battery energy storage systems (25,408 MW in various stages). The evening peak deficit that emerges when solar generation drops to zero creates a steep 4-hour ramp (~100 GW in our model) that must be served by a combination of storage discharge, coal ramp-up, and gas peaking.
The transmission network must accommodate bidirectional flows as storage charges during solar hours (west-to-east flows from RE zones) and discharges during evening peak (potentially reversing flow direction). Our Scenario Engine's time-of-day presets (Solar Noon vs. Evening Peak) directly demonstrate this flow reversal effect on the 500-bus clustered network.
5. Cost Implications
5.1 Transmission Investment Requirements
The NEP-Transmission estimates ₹4.9 lakh crore for interstate and intrastate transmission expansion through 2031-32. The system cost calculations in our Scenario Engine use INR-denominated marginal costs reflecting Indian wholesale electricity market rates:
| Carrier | Variable Cost (₹/kWh) | Implied System Cost Contribution |
|---|---|---|
| Solar/Wind | 0.00 | Zero marginal cost; transmission is the binding constraint |
| Hydro | 0.00 | Run-of-river and reservoir; no fuel cost |
| Nuclear | 0.25 | Fuel + O&M; baseload operation |
| Pithead Coal | 1.50–2.00 | Low variable cost near coalfields |
| Imported/Coastal Coal | 3.50–5.00 | Higher fuel cost; price-sensitive dispatch |
| Gas (CCGT) | 4.50–6.00 | Peaking; LNG import dependency |
| Oil | 8.00–12.00 | Last-resort peaking only |
6. Recommendations for MNRE Consideration
Recommendation 2: Commission detailed N-1 contingency studies for the top 50 most loaded corridors identified in this analysis, particularly the interstate ties that currently operate above 50% loading during evening peak.
Recommendation 3: Integrate energy storage siting decisions with transmission expansion planning. Storage located at RE zone injection points can reduce peak transmission requirements by 15-25%.
Recommendation 4: Develop a coal transition transmission roadmap that accounts for the spatial redistribution of generation as pithead coal plants retire and are replaced by geographically distributed RE, avoiding stranded transmission assets.
Recommendation 5: Align Green Energy Corridor Phase-III planning with the RCO trajectory, ensuring transmission infrastructure leads RE capacity additions by 2-3 years to avoid curtailment.