{% extends "dashboard/base.html" %} {% load static %} {% block title %}Home{% endblock %} {% block content %}
R2H2

Simulate green hydrogen production from wind energy — configure components, upload wind data, and run multi-year transient simulations.

At a Glance

{{ sim_count }}
flowchart Simulation{{ sim_count|pluralize }}
{{ run_count }}
history Simulation Run{{ run_count|pluralize }}
{{ wind_count }}
air Wind Dataset{{ wind_count|pluralize }}

How It Works

1
air
Upload Wind Data

Import an HDF5 file containing turbine power time-series. Time step and duration are auto-detected.


Go to Wind Data →
2
deployed_code
Configure Components

Set up batteries, electrolysers, PEM cells, and thermal properties that describe your system.


Go to Components →
3
flowchart
Build a Simulation

Create a simulation model that links your components and wind input together into a run configuration.


Go to Models →
4
monitoring
Run & Analyse

Execute multi-year transient simulations and track live progress. Results are saved for later review.


View Results →

Recent Simulation Runs

{% if recent_runs %} {% for run in recent_runs %} {% endfor %}
Simulation Status Started Duration Message
{{ run.simulation.name }} {% if run.status == 'done' %} Done {% elif run.status == 'running' %} Running {% elif run.status == 'error' %} Error {% elif run.status == 'cancelled' %} Cancelled {% else %} Running {% endif %} {% if run.started_at %}{% else %}—{% endif %} {% if run.duration_hms %}{{ run.duration_hms }}{% else %}—{% endif %} {{ run.message|default:"—" }}
{% else %}

No simulation runs yet. Create one now.

{% endif %}
{% endblock %}