Energy systems analysis and renewable energy siting. Use when computing LCOE, analyzing energy grid spatial patterns, optimizing renewable energy placement, assessing energy storage, or performing techno-economic analysis of energy projects.
Scanned 9/1/2026
Install to Claude Code
npx -y skills add ActiveInferenceInstitute/GEO-INFER --skill GEO-INFER-ENERGY --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of GEO INFER ENERGY?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/activeinferenceinstitute-geo-infer-energy)More formats (shields.io, HTML) on the badges page.
---
name: geo-infer-energy
description: Energy systems analysis and renewable energy siting. Use when computing LCOE, analyzing energy grid spatial patterns, optimizing renewable energy placement, assessing energy storage, or performing techno-economic analysis of energy projects.
prerequisites:
required:
- geo-infer-space
- geo-infer-data
recommended:
- geo-infer-time
- geo-infer-bayes
difficulty: intermediate
estimated_time: 45min
examples_dir: ../GEO-INFER-EXAMPLES/examples/
---
# GEO-INFER-ENERGY
## Instructions
### Core Capabilities
- **LCOE**: Levelized cost of energy calculations for solar, wind, hydro
- **Renewable siting**: Resource assessment, terrain analysis, constraint mapping
- **Grid analysis**: Spatial energy grid modeling, load flow, transmission losses
- **Techno-economics**: NPV, IRR, payback analysis for energy investments
- **Emissions**: Carbon intensity mapping, reduction pathway scenarios
### Key Imports
```python
from geo_infer_energy.core.lcoe import LCOECalculator
from geo_infer_energy.core.renewable_siting import RenewableSiteSelector
from geo_infer_energy.core.grid_analysis import GridAnalyzer
from geo_infer_energy.core.techno_economics import TechnoEconomicModel
```
## Examples
```python
from geo_infer_energy.core.renewable_siting import RenewableSiteSelector
selector = RenewableSiteSelector(technology="solar")
candidates = selector.evaluate(
solar_irradiance=ghi_raster,
terrain=dem,
constraints={"slope_max": 15, "distance_from_grid_km": 10}
)
optimal_sites = selector.rank(candidates, n_top=5)
```
## Guidelines
- LCOE benchmarking in development (Alpha)
### Integrations
- Integrates with CLIMATE for renewable resource projections
- Integrates with SPACE for spatial optimization grid
- Test: `uv run python -m pytest GEO-INFER-ENERGY/tests/ -v`
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!