Continuous Power Quality Monitoring in the Jupiter Data Centre

Power Quality at Exascale Level

Continuous Power Quality Monitoring in the Jupiter Data Centre - Power Quality at Exascale Level

Forschungszentrum Jülich operates JUPITER, Europe’s fastest supercomputer, setting new benchmarks for energy efficiency, grid stability and standard-compliant voltage quality.
To ensure these exascale requirements, the data centre employs a comprehensive Power Quality Monitoring system with PQI-DE, PQI-DA smart and the WebPQ® software from A. Eberle.
Voltage quality is monitored according to IEC-61000-4-30 Class A and EN 50160 - delivering full grid transparency and maximum operational security.

Key Takeaways

  • IEC-61000-4-30 Class A / EN 50160; harmonics & supraharmonics up to 20 kHz
  • Scalable architecture with PQI-DE, PQI-DA smart and WebPQ®
  • Time-synchronised, role-based evaluation; SIEM-ready
  • Data for Digital Twin & research (MATLAB®, PowerFactory®)
  • End-to-end Power Quality Monitoring from MV intake to server rooms

Initial Situation at Forschungszentrum Jülich

Even before JUPITER, more than 120 Power Quality Analysers were deployed campus-wide, including in JUWELS.
These included PQI-DA smart and PQI-DE devices with central evaluation and low-latency data access for simulation servers to build a digital twin of the campus MV network.
With JUPITER, the monitoring was expanded by 17 additional measuring points.

Initial situation - summary

  • Exascale operation with very high requirements for voltage quality and availability
  • Campus grid with mixed load and feed-in profiles
  • 120 measuring points as foundation, expandable for JUPITER
  • Low-latency data access for research and model validation

Technical key data - grid setup & measurement architecture

FeatureValue
Total measurement points> 140 (PQI-DE & PQI-DA smart)
Time synchronisationGPS / NTP (≤ 1 ms Genauigkeit)
StandardsIEC-61000-4-30 Klasse A / EN 50160
Data formatsOPC UA / CSV / REST API

These data form the basis for continuous voltage-quality acquisition in the Jülich campus grid.

Typical Challenges in High-Performance Data Centres

Data centres are sensitive to voltage dips, flicker, transient events, harmonics and supraharmonics.
GPU-intensive jobs and cooling cause rapid load steps.
The integration of CHP, PV, storage and V2G charging alters load flows and spectra up to 20 kHz.
Beyond technical control, IEC-61000-4-30 Class A compliant measurement and EN 50160 documentation are required – and the monitoring must scale economically.

In HPC infrastructures like JUPITER, high-frequency current changes arise from GPU cluster clocks and load transitions.
These can cause short-term harmonic peaks and frequency-selective coupling between MV and LV levels.
Continuous, high-resolution Power Quality Monitoring detects and assesses such transients early – crucial for energy supply and operational security in data centres and industrial campus grids.

Challenges - summary

  • High load dynamics from HPC jobs and cooling
  • PQ effects up to 20 kHz due to power electronics
  • Obligation for standard-compliant measurement & documentation
  • Scalable Power Quality Monitoring with acceptable OPEX

Measurement Data - Hpc-Specific Power Quality Effects

Influencing factorDescription
GPU load stepsCurrent change > 200 A / ms
SupraharmonicsFrequency ranges up to 20 kHz
PQI-LV, PQI-DA smart & PQI-DE40,96 kHz
Standards referenceEN 50160 / IEC-61000-4-7

These parameters characterise typical grid phenomena in exascale operation.

Project Objectives

Key objectives: full transparency of load flows, validation of simulation & grid models, effective early-warning for critical events, and flexibility for future expansions.

Objectives - summary:

  • Transparency, validation, early warning, flexibility, compliance
  • 10-minute averages + event-based disturbance records
  • Precise time base and central, role-based evaluation

The measurement data serve not only for operations but also for validating digital twins of the campus grid – enabling realistic simulation of voltage stability and response times compared with live PQ data.

Technical Solution by A. Eberle

FZJ employs a tiered architecture with PQI-DE, PQI-DA smart, and WebPQ®.
PQI-DE units are installed at key nodes with large displays for direct live data access.
In deeper network layers, PQI-DA smart units are DIN-rail mounted – compact, cost-efficient and optimised for large-scale monitoring.
WebPQ® consolidates all measuring points, reports and alarms in a central browser interface.

The system is time-synchronised via GPS or NTP servers, allowing event correlation across voltage levels – vital for analysing cause-and-effect between MV and LV grids.

PQI-DE at critical nodes

  • Class A Power Quality measurement for critical grid nodes
  • Large display for direct access to live data
  • Event-triggered disturbance records and high sampling rates
  • Synchronisation and large local memory
monitoring-data-centre.jpg
PQI-DE Power Quality Monitoring at critical nodes in the JUPITER data centre
Figure 2: PQI-DE Monitoring at critical nodes in the data centre
PQI-DA smart Power Quality Monitoring in low-voltage networks at Forschungszentrum Jülich
Figure 3: PQI-DA smart - for scaling measurement points in the lower network levels

PQI-DA smart in the field

  • Compact DIN-rail design
  • Scalable sub-measurements for dense voltage-quality coverage
  • Class A measurement of voltage, current & harmonics
  • Economical and efficient deployment

WebPQ® software platform

  • Central browser-based PQ analysis with roles & permissions
  • Live data, alarms, compliance reports, exports
  • Modbus TCP/IP & OPC UA integration
  • High IT security standards with TLS encryption, role-based access, and regular security updates
WebPQ® central Power Quality Monitoring platform for all measurement points in the JUPITER network
Figure 4: WebPQ® - Central PQ analysis for all measuring points in the JUPITER network

IT Security in WebPQ®

In high-performance environments, IT security is crucial. WebPQ® ensures data protection and cyber-resilience through:

  • Encrypted HTTPS / TLS communication
  • Role-based user & access management
  • Secure authentication (2FA optional)
  • Audit trails & tamper-proof logging
  • Optional network segmentation

WebPQ® also integrates with SIEM systems so that security-related events can be part of the overall cyber-security strategy.

It Security and Integration Paths in Webpq®

AspectImplementation
EncryptionTLS 1.3 / HTTPS
AuthenticationTwo-factor (2FA / token)
Role modelMulti-user permission management
SIEM integrationSyslog / SNMP trap
Data APIsOPC UA / REST / Modbus TCP/IP

The implementation ensures secure data paths and compatibility with existing IT-security concepts.

Example: Time-synchronised query (PostgreSQL)

-- pgsql
SELECT timestamp, voltage, frequency
FROM pq_measurements
WHERE device = 'PQI-DE'
AND frequency BETWEEN 49.9 AND 50.1
ORDER BY timestamp DESC;

Purpose: Quick retrieval of frequency values near EN 50160 limits from a PQI-DE for situational assessment.

Example: WebPQ® API behind NGINX reverse proxy

# nginx
location /webpq/api {
    proxy_pass http://localhost:8080/api/measurements;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header Host $host;
    proxy_set_header X-Forwarded-Proto $scheme;
}

Purpose: Secure, centralised access path to measurement data (reverse proxy).

Example: Programmatic fetch (Java)

/* java */
HttpResponse<String> response = Unirest.get("https://webpq.example.org/api/v1/measurements")
  .header("Authorization", "Bearer <API_TOKEN>")
  .asString();
System.out.println(response.getBody());

Purpose: Automated retrieval for reporting / research / Digital Twin.

Example: Visual style in dashboard (CSS)

/* css */
.graph-voltage {
  stroke: #0073e6;
  stroke-width: 2;
  fill: none;
}

Purpose: Readable voltage traces in SVG/Canvas charts.

Measurement Results and Findings

Load flows and trend analyses

Power Quality Monitoring current waveforms showing load variations in HPC operation at JUPITER
Figure 5a: Current waveforms (I1, I2, I3) in weekly resolution for a selected feeder. The illustration shows typical daily load profiles and characteristic load peaks as observed in HPC operation at Forschungszentrum Jülich.
Power Quality Monitoring of power and reactive load trends in the JUPITER data centre
Figure 5b: Power waveforms (P, Q, S) in monthly resolution. Recurring base and peak load patterns as well as differences in reactive power behaviour are visible - comparable to the dynamic profiles in the JUPITER data centre.
Voltage quality monitoring showing fluctuations and dips during high-load HPC operation
Figure 5c: Voltage waveforms (U1, U2, U3) in monthly resolution. The figure documents typical fluctuations and voltage sags as they occur under strong load dynamics in HPC environments.

Long-term trends reveal changes in load behaviour (e.g., software updates, server expansions, cooling strategies) and enable early actions to keep EN 50160-compliant voltage quality.

Transients and response times

Transient event captured by Power Quality Monitoring system during HPC job startup
Figure 6a: Transient recording during the parallel start-up of multiple HPC jobs. A short-term voltage sag and frequency deviation caused by high inrush currents are clearly visible.
High-resolution Power Quality Monitoring of voltage and current transients at JUPITER
Figure 6b: High-resolution view of the same transient in the time domain. The voltage and current waveforms illustrate the dynamic inrush currents of the server power supplies and demonstrate the network loading during the start-up phase.

Event-triggered recordings up to 200 kHz per channel enable precise analysis of millisecond-range voltage dips and quantification of effects on UPS systems or other sensitive loads.

Harmonics and Supraharmonics

Power Quality Monitoring of harmonics and supraharmonics up to 20 kHz in data-centre supply network
Figure 7: Harmonic and supraharmonic analysis up to 20 kHz. The distributions show spectral peaks caused by the switching power supplies of servers. Frequency-selective effects and possible resonance ranges were identified and are being incorporated into filter and choke design considerations.

The analysis reveals spectral clusters and resonances tied to specific PSU switching frequencies – insights that directly support Power Quality optimisation, filter dimensioning and EMC assessment.

Example: Quick trend fit (Mathematica)

(* mathematica *)
Fit[data, {1, x, x^2}, x]

Purpose: Fast curve fit (trend, curvature) for time series.

Benefits for the Operator

The combined PQI-DE / PQI-DA smart / WebPQ® concept delivers end-to-end grid transparency from the main feed to sub-distribution, proves standards compliance and provides robust decision support. It also supplies KPIs for energy management, voltage-quality trends and capacity planning. Continuous analysis of reactive power, voltage asymmetry and grid interactions reduces operating costs and optimises components.

Conclusion and Outlook

The project shows how Exascale requirements and the energy transition can be mastered together – with Class A Power Quality Monitoring, a tiered architecture and central WebPQ® evaluation. The approach is transferable to other data centres, utilities and campus grids. Next steps include predictive analytics, automation and machine learning in WebPQ® to detect recurring patterns and generate early warnings – a step towards autonomous Power Quality Monitoring in HPC and industrial grids.

Standards, Measurement Methods and Integration

Measurements in line with IEC-61000-4-30 Ed. 4 Class A; harmonics per IEC-61000-4-7; flicker per IEC-61000-4-15; supraharmonics 2–20 kHz (FGW TR3). Documentation per EN 50160. Via CSV, OPC UA, REST API, voltage-quality data flow into MATLAB/Simulink or DIgSILENT PowerFactory to compare real vs. modelled behaviour and calibrate load-flow and stability models.

Standards and Methods at a Glance

ParameterStandard / method
Voltage qualityIEC-61000-4-30 Class A
HarmonicsIEC-61000-4-7
FlickerIEC-61000-4-15
Supraharmonics2–20 kHz (FGW TR3)

Example: SQL export to CSV (PostgreSQL)

-- sql
COPY pq_measurements
TO '/var/data/pq_exports/pq_jupiter.csv'
WITH CSV HEADER;

Purpose: Standards-compliant data extract for audit/analysis.

Product Innovation: Pqi-LV

The PQI-LV extends the portfolio with a cost-efficient solution for applications requiring high measurement-point density in LV grids. Ideal for utilities, grid operators and data-centre operators needing continuous, accurate voltage-quality monitoring with standards-compliant reporting.

PQI-LV Power Quality Monitoring device for cost-efficient low-voltage network analysis
Figure 8: PQI-LV - new cost-efficient solution for low-voltage networks

FAQ on Power Quality Monitoring in the Data Centre

What does Power Quality Monitoring in the data centre mean?

Continuous acquisition and analysis of voltage quality, harmonics, supraharmonics and transient events to ensure stable energy supply and full grid transparency.

Which standards apply to voltage quality?

IEC-61000-4-30 Class A and EN 50160 define the measurement and assessment framework for Power Quality Monitoring in utility and data-centre grids.

What are the benefits of WebPQ®?

Centralised Power Quality analysis, role-based permissions, secure communication and integration with simulation and research environments.

What is PQI-LV?

A Power Quality analyser for precise voltage-quality measurement in low-voltage grids – ideal for dense, standards-compliant monitoring in industry and data centres.

How do the data feed simulations?

Export/streaming via CSV, OPC UA, REST API into MATLAB®/Simulink® or DIgSILENT PowerFactory®.

Authors

Fabian Leppich - Product Manager PQSys
Maximilian Sefz - Head of Marketing
Wolfgang Reitmeier - Sales

WebPQ®

The Easy Way to Analyse Your Power Quality Measurement Data

The new WebPQ® is the central analysis software for all fixed installed fault recorders, power quality monitoring devices and for the evaluation of the portable power quality analysers* from A. Eberle.

*upcoming versions

Do You Have Questions About Our Products?

Contact Us Here:


Contact Us

News From the Product Groups

Power Quality | – News

Blogpost

Short video presentation »PQ-Box ONE«

Ahead of the official launch on February 25, 2026, we are releasing a short video about the new »PQ-Box ONE« that provides an initial overview of the key features of the new PQ measuring device.

Read more

Blogpost

»PQ-Box 150« and »PQ-Box ONE«

PQ-Box 150 and PQ-Box ONE in practical comparison: PQ-Box 150 and PQ-Box ONE both deliver Class A measurements, but differ in terms of installation, handling and areas of application.

Read more

Webinar

»Cyber Security« Webinar: A Challenge for European Energy Companies

Webinar recording from 2025-11-26: »Cyber Security« - A Challenge for European Energy Companies

Read more

Blogpost

A. Eberle at the Schwabach City Run 2025

A. Eberle was represented by 37 participants at the 2025 Schwabach City Run, setting a new internal record for participation. Particularly noteworthy is Benjamin Rentsch's first place in the M 35 40 age group and third place overall.

Read more

Training Video

»PQMobil« Training Video 8: Setting up remote access for the PQ-Box

This video shows how to configure a PQ-Box remotely via Wi-Fi, LAN, network, and the Internet using a VPN tunnel, view live data, and transfer measurement data. Enjoy the video.

Read more

General Knowledge

Total Harmonic Distortion (THD) in Low Voltage Networks

This study examines harmonic distortion in modern low-voltage grids, showing real measurement data, key standards (EN 50160, IEC 61000-3-2/-4-30) and practical ways to reduce THD in applications such as EV charging, PV systems, battery storage and hybrid working environments.

Read more

Special Publication

Power Quality Monitoring in Buildings - A Key Factor in Modern Building Design

Discover how Power Quality Monitoring in Buildings improves reliability, efficiency and grid stability. Learn more in our technical article.

Read more

Webinar

»PQSys« Webinar: »WebPQ®« - The New Power Quality Software for Continuous Grid Monitoring

Webinar recording from 2025-09-25: »PQSys« Webinar: »WebPQ®« - The New Power Quality Software for Continuous Grid Monitoring

Read more

General Knowledge

Voltage Measurement Can Improve the Quality of Supply

A short study by EWI and Fraunhofer IEG shows that mandatory voltage measurements and stricter regulation of voltage quality are necessary to ensure grid stability in Germany in light of the energy transition.

Read more

General Knowledge

Power in Multiphase Systems

This technical report highlights the special features of power transmission in three-phase systems and offers valuable insights into the optimisation and analysis of modern power grids.

Read more

Webinar

»PQMobil« Webinar: New Features/Functions for Your PQ-Box/es: Presentation of WinPQ mobil V8 & V7 legacy

Webinar recording from 2025-07-29: »PQMobil - New Features/Functions for Your PQ-Box/es: Presentation of WinPQ mobil V8 & V7 legacy«.

Read more

Blogpost

Visit From the Rudolf Diesel Technical School at A. Eberle

We were happy to welcome you, Rudolf-Diesel-Fachschule! Yesterday, we had the pleasure of welcoming two classes of future electrical engineering technicians from the Rudolf-Diesel-Fachschule Nürnberg to our company in Nuremberg.

Read more

Blogpost

TOP 100 Awards 2025: Innovation for the Energy Future

💡 As part of the TOP 100 Awards 2025, we were honored to receive a special recognition last week in Mainz – personally presented by TV host and science journalist Ranga Yogeshwar.

Read more

Blogpost

University Excursion: Pentecost Excursion of the Friedrich-Alexander-University Erlangen-Nuremberg (FAU)

As a company dedicated to innovation, education, and the energy transition, we are pleased to have once again supported the Whitsun excursion of Friedrich-Alexander University Erlangen-Nuremberg (FAU) this year.

Read more

Blogpost

Further Growth at A. Eberle

Welcome to the team! We welcome our new colleagues at A. Eberle.

Read more

Blogpost

Specialist Training on Power Quality

On 27 May 2025, everything revolved around electricity, faults and how to recognise them in a specialist training course on power quality at the Balthasar Neumann Technical Centre in Trier (BNT).

Read more

Webinar

»PQSys« Webinar: PQ-Monitoring & Feeder Current Measurement in Low-Voltage Grids 3

Webinar recording from 2025-05-14: »PQSys - PQ-Monitoring & Feeder Current Measurement in Low-Voltage Grids - part 3«.

Read more

Webinar

»PQMobil« Webinar: Power Quality Analysis in Public & Industrial Power Grids – Part 3

Webinar recording from 2025-04-02: »PQMobil - Power Quality Analysis in Public & Industrial Power Grids – Part 3«.

Read more

Training Video

»PQMobil« Training Video 7: Measurement Data

This video is all about the measurement data. What data does the PQ-Box record and what is the best way to configure it beforehand?

Read more

Webinar

»PQSys« Webinar: Presentation: »PQI-LV« - The New PQ-Analyser for Transparency in the Low-Voltage Grid

Webinar recording from 2025-02-19: »PQSys - Presentation: »PQI-LV« - The New PQ-Analyser for Transparency in the Low-Voltage Grid«.

Read more

General Knowledge

Measuring the Voltage Drop

The voltage drop is the difference between the voltage at the beginning and end of an electrical line. In an electrical network, the voltage can be reduced by the resistance and impedance of the lines, resulting in a lower voltage reaching the consumer than was originally fed in. Find out everything about measurement and calculation in this article!

Read more

Training Video

»PQSys« Training Video 1: Presentation New Functions of Firmware V3.2 for PQI-LV, PQI-DA smart & PQI-DE

In this video, we present the new functions and extended options with firmware version 3.2 for our fixed installed power quality analysers and fault recorders PQI-LV, PQI-DA smart and PQI-DE of the PQSys product range. Find out in just three minutes how the new firmware expands the application and operating options of your A. Eberle measuring devices.

Read more

Blogpost

PQ-Box User Training in Başiskele (Turkey) With Our Partner GENETEK Enerji Sistemleri Ltd.

In August, we held a training course with our partner GENETEK Enerji Sistemleri Ltd for our portable PQ network analyzers in Turkey.

Read more

Webinar

»PQMobil« Webinar: Power Quality Analysis in Public & Industrial Power Grids – Part 2

Webinar recording from 2024-11-13: »PQMobil - Power Quality Analysis in Public & Industrial Power Grids – Part 2«.

Read more

Webinar

»EOR-3DS« & »PQSys« Webinar: Digitise and monitor local network substations for the future with »EOR-3DS« & »PQSys«

Webinar recording from 2024-10-10: »EOR-3DS« & »PQSys - Digitise and monitor local network substations for the future with »EOR-3DS« & »PQSys««.

Read more

Contact request:



* Mandatory

Your data is being processed

a-eberle kontakt newsletter ×

The download started automatically in a new window.

How did you hear about us?
Consent to data transfer*

* Mandatory fields