The brains behind microgrids

EDGE AI controllers are essential for advanced microgrids. Without such a controller, it’s impossible to manage the complexities of distributed energy resources (DERs), such as solar panels, battery storage systems, and EV charging stations. Controllers effortlessly enable real-time automation and efficient power distribution. Discover how you can customize your EDGE AI controllers via our Frequenz platform below.

OVERVIEW
What's an AI controller?
An EDGE AI Controller is a sophisticated piece of hardware equipped with advanced AI capabilities. It operates at the 'edge' of the network where it processes data locally, at or near the source of your data.

This approach reduces latency, minimizes bandwidth use, and enhances the system's ability to make immediate, autonomous decisions based on real-time data – even if you’re not connected to the cloud.
HOW IT WORKS
How it works
In the context of a microgrid, the EDGE AI Controller acts as the brain of the microgrid, intelligently managing various DERs like solar panels, wind turbines, battery storage systems, and EV charging stations.

By analyzing data and forecasting energy production, consumption, and external factors like market prices and weather conditions, the controller optimizes energy distribution and storage, ensuring maximum efficiency and reliability.
TECH SPECS
What's inside
Here’s a detailed illustration and breakdown of the key components of what our EDGE AI Controllers are made of:
TECH SPECS
Comparison chart

Controller S

Best for managing small microgrids

Controller M

Best for medium microgrids

Controller L

Best for huge microgrids

System

Yes
X
Optional

AI acceleration:

TBD
TBD
TBD

CPU:

8 GB
8 GB
TBD

Memory:

256 GB SSD
256 GB SSD
TBD

Storage:

WiFi kit:

LTE modem

Internal
Internal
TBD

SIM card slot:

[list]

I/O:

Hardware

VESA mounting bracket
VESA mounting bracket
TBD

Mounting:

Extended temperature warranty (-20C - 70C)
Extended temperature warranty (-20C - 70C)
TBD

Enclosure:

VESA mounting bracket
VESA mounting bracket
TBD

Cooling:

Accesories

Included
Included
Included

Power supply:

Included
Included
Included

Add-on 1:

Included
Included
Included

Add-on 2:

GET A CONTROLLER
Buy your EDGE AI controller from Frequenz
Buy a controller today from Frequenz or alternatively you can use our platform with your own tech.
Thank you! Your submission has been received!
We will be in touch with you soon.
Oops! Something went wrong while submitting the form.

S

M

L

CPU
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
4C, 1.8GHz, 12W
4C, 2.0GHz, 12W
Storage
I/O
CPU
GET A CONTROLLER
Bring you own controller to use with the Frequenz platform
Buy a controler today from Frequenz or alternatively you can use our platform with your own tech.

Core Features

Data
pipeline

Access historical data and get resampled live streaming of current and power values from all electrical components.

Stream aggregated metrics, use automatically generated formulas for fetching composite values like grid power, total battery power, etc., or compose data streams to build your own formulas from multiple electric meters.

Dynamic
configuration

Dynamically reconfigure all features of the SDK in real-time, including changes to the electrical component graph, or the automatically generated power formulas from multiple meters.

Additionally, you can subscribe to be notified of configuration changes that have been made in the UI and dynamically re-configure your own actors.

Power
Management

With multiple batteries, charge and discharge requests are distributed across the batteries in such a way that their charge levels remain balanced, which helps maximize the available battery power at all times.

Conflicting power requests from different actors will seamlessly converge into a single decision based on actor priorities.

Thank you! Your submission has been received!
We will be in touch with you soon.
Oops! Something went wrong while submitting the form.
GET A CONTROLLER
Buy your EDGE AI controller from Frequenz
Buy a controller today from Frequenz or alternatively you can use our platform with your own tech.
Processor
Storage
Memory
Networking

S

Best for managing small microgrids

All limited links
1.0 GHz
Own analytics platform
128 GB
Chat support
8 GB
LAN

M

Best for managing medium size setups

All limited links
1.6 GHz
Own analytics platform
256 GB
Chat support
8 GB
LAN

L

Best for large enterprises with multiple components

All limited links
2.0 GHz
Own analytics platform
512 GB
Chat support
16 GB
LAN + WiFi

S

M

L

CPU
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
2C, 1.6GHz, 6W
4C, 1.8GHz, 12W
4C, 2.0GHz, 12W
Storage
I/O
CPU
GET A CONTROLLER
Bring you own controller to use with the Frequenz platform
Buy a controler today from Frequenz or alternatively you can use our platform with your own tech.

Core Features

Data
pipeline

Access historical data and get resampled live streaming of current and power values from all electrical components.

Stream aggregated metrics, use automatically generated formulas for fetching composite values like grid power, total battery power, etc., or compose data streams to build your own formulas from multiple electric meters.

Dynamic
configuration

Dynamically reconfigure all features of the SDK in real-time, including changes to the electrical component graph, or the automatically generated power formulas from multiple meters.

Additionally, you can subscribe to be notified of configuration changes that have been made in the UI and dynamically re-configure your own actors.

Power
Management

With multiple batteries, charge and discharge requests are distributed across the batteries in such a way that their charge levels remain balanced, which helps maximize the available battery power at all times.

Conflicting power requests from different actors will seamlessly converge into a single decision based on actor priorities.

Thank you! Your submission has been received!
We will be in touch with you soon.
Oops! Something went wrong while submitting the form.
RESOURCES
Start building with Frequenz
Developers interested in leveraging EDGE AI Controllers for microgrid management can start by exploring our SDK and documentation. Our platform provides all the necessary tools and support to innovate and transform the way we manage, store and trade energy.
Go to the docs
Learn about the SDK
async def main() -> None:
    await microgrid.initialize(
        host=HOST,
        port=PORT,
        resampler_config=ResamplerConfig(resampling_period=timedelta(seconds=1.0)),
    )

    grid_power_recv = microgrid.logical_meter().grid_power.new_receiver()
    battery_pool = microgrid.battery_pool()

    async for grid_power in grid_power_recv:
        if grid_power.value and grid_power.value > Power.zero():
            print(f"Discharging battery with {grid_power.value}")
            await battery_pool.discharge(grid_power.value)
        elif grid_power.value and grid_power.value < Power.zero():
            print(f"Charging battery with {grid_power.value}")
            await battery_pool.charge(grid_power.value)


asyncio.run(main())

Docs

This is some text inside of a div block.

SDK

This is some text inside of a div block.
Lorem ipsum dolor sit amet, consectetur adipiscing elit

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Lorem ipsum dolor sit amet, consectetur adipiscing elit

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Lorem ipsum dolor sit amet, consectetur adipiscing elit

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.

Lorem ipsum dolor sit amet, consectetur adipiscing elit

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.