Skip to content

Lessons — Baltic Wind HV Control Platform

Step-by-step learning log documenting every engineering decision in the 510 MW Baltic Sea wind farm simulation. Each lesson follows the 4-layer teaching model (physics → standard → mathematics → code) and maps to a section of the Learning Roadmap.


The Project at a Glance

Parameter Value
Total capacity 510 MW
Turbines 34 × Vestas V236-15.0 MW
Array cables 66 kV XLPE
Offshore substation 66/220 kV
Export cable 220 kV HVAC, 45 km subsea
Grid connection 400 kV PSE (Polish TSO)
STATCOM ±120 MVAR + 50 MVAR shunt reactor
Location Polish Baltic Sea
Compliance PSE IRiESP, ENTSO-E NC RfG Type D
Cut-in / rated / cut-out 3 / 12.5 / 31 m/s

Five Projects

# Project Domain Core Technology Key Standard
P1 Wind Resource & AEP Energy yield PyWake, ERA5, Weibull IEC 61400-12
P2 HV Grid Integration Power systems Pandapower, ANDES IEC 60909, ENTSO-E NC RfG
P3 SCADA & Automation Control systems IEC 61850 data models IEC 61850, IEC 62443
P4 AI Forecasting Machine learning XGBoost, LSTM, TFT IEA Wind Task 36
P5 Commissioning Operations Switching programmes IEC 62271, LOTO

System Architecture

graph TB
    subgraph Frontend
        React["React 19 + TypeScript strict<br/>Tailwind v4 + Plotly.js"]
    end

    subgraph Backend
        FastAPI["FastAPI + Python 3.13<br/>Pydantic v2 + SQLAlchemy async"]
    end

    subgraph Data
        PG["PostgreSQL 16 + TimescaleDB"]
        Redis["Redis 7"]
    end

    subgraph Compute["Computation Engines"]
        PyWake["PyWake (P1)"]
        Pandapower["Pandapower (P2)"]
        ANDES["ANDES (P2)"]
        ML["XGBoost / LSTM / TFT (P4)"]
    end

    subgraph DevOps
        CI["GitHub Actions CI"]
        PreCommit["Pre-commit Hooks"]
        Dependabot["Dependabot"]
        Docker["Docker Compose"]
        MkDocs["MkDocs Material"]
    end

    React -->|REST API| FastAPI
    FastAPI --> PG
    FastAPI --> Redis
    FastAPI --> PyWake
    FastAPI --> Pandapower
    FastAPI --> ANDES
    FastAPI --> ML
    CI --> PreCommit
    CI --> Dependabot

Session Protocol

Every coding session follows a mandatory structure defined in CLAUDE.md:

Session Protocol

  • Open every session: "We're building a 510 MW Baltic Sea wind farm simulation. 34 × V236-15.0 MW, 66 kV array, 220 kV export (45 km), PSE grid. Today: [module] — maps to [Learning_Roadmap section]."
  • Close every session: 3 interview questions + "explain simply" + "explain technically"
  • Code order: P1 → P2 → P3 → P4 → P5. Physics first. Code second.

Document Philosophy — IEC 61355

IEC 61355 (Classification and designation of documents for plants, systems and equipment) establishes a hierarchical document structure for industrial projects. The standard requires a master document index with version control and traceability. ISO 9001 (Quality management systems) extends this to require documented procedures, controlled revisions, and audit trails.

Our documentation follows these principles in a software context:

  • Project_Roadmap.md — the design basis (what to build)
  • Learning_Roadmap.md — the self-study curriculum (what to learn)
  • SKILL.md — engineering standards and coding conventions (how to build)
  • CLAUDE.md — session protocol (how to maintain context)
  • docs/archive/ — historical versions preserved for traceability

Lesson Progress

# Lesson Phase Language Status
000 Project Planning & Engineering Methodology P0 English Complete
001 DevOps Foundation P0 English Complete
002 Internationalization P0 Turkish Complete
003 Ön Tasarım Kararları: Konum, Türbin, Alan & Şebeke P1 Turkish Complete
004 P1: Veritabanı, ERA5 İşleme & Weibull P1 Turkish Complete
005 Rüzgar Gülü Analizi & PyWake İz Modellemesi P1 Turkish Complete
006 Yerleşim Optimizasyonu, Blokaj & AEP Kaskadı P1 Turkish Complete
007 HV Şebeke Entegrasyonu: Pandapower Kararlı Durum Modeli P2 Turkish Complete
008 Dinamik Şebeke Uyumluluğu: ANDES, FRT, Frekans, SSO & Konvertör P2 Turkish Complete
009 IEC 61850 Veri Modeli, SCL & SCADA Cihaz Kayıt Sistemi P3 Turkish Complete
010 GOOSE Arıza Simülasyonu, Koruma Zaman Çizelgesi & SCADA API P3 Turkish Complete
011 IEC 62443 RBAC & 9 Durumlu Permit-to-Work Yaşam Döngüsü P3 Turkish Complete
012 SCADA Veri Hattı: Güç Eğrisi, Sentetik Üretim, Kalite Filtreleri & Kısıtlar P4 Turkish Complete
013 XGBoost Kantil Tahminleme: NWP Pipeline, Olasılıksal Güç Tahmini & SHAP P4 Turkish Complete
014 LSTM Zaman Serisi Tahminleme: MC Dropout ile Belirsizlik Ölçümü P4 Turkish Complete
015 TFT: Dikkat Mekanizması ile Çok Ufuklu Güç Tahmini P4 Turkish Complete
016 Topluluk Tahminleme, Rampa Tespiti ve Model Değerlendirme P4 Turkish Complete
017 P5 Devreye Alma: Anahtarlama Programı, Ekipman Durum Makinesi ve LOTO P5 Turkish Complete
018 FAT/SAT Kabul Testleri, Koruma Rölesi Koordinasyonu ve SAT Kapısı P5 Turkish Complete

Coming next: P5 — Frontend visualisation & commissioning dashboard