top of page

BESS - Battery Energy Storage System

image-wind-hydrogen-bess.jpg
image-wind-hydrogen-bess-2.jpg
image-wind-hydrogen-bess-3.jpg

Os Battery Energy Storage Systems (BESS) estão transformando a forma como produzimos, consumimos e gerenciamos energia. Em residências e pequenos comércios, o BESS permite armazenar a energia gerada por painéis solares durante o dia para ser usada à noite, reduzindo custos e aumentando a autonomia energética. Em condomínios, indústrias e prédios públicos, as baterias ajudam a suavizar picos de demanda, garantir energia de backup e melhorar a eficiência do consumo.

Em larga escala, os BESS são aplicados em usinas eólicas e solares para reduzir o desperdício de energia — o chamado curtailment — e para estabilizar a rede elétrica. Vale ressaltar que integrados ao Sistema Interligado Nacional (SIN), eles atuam como elementos estratégicos, fornecendo serviços ancilares como regulação de frequência, controle de tensão e reserva de capacidade.

Com tecnologias avançadas, como os inversores Grid-Forming, os BESS tornam possível operar sistemas com alta penetração de fontes renováveis, garantindo segurança, flexibilidade e qualidade no fornecimento de energia. Do lar ao SIN, o armazenamento em baterias é um passo essencial para o futuro sustentável da matriz elétrica brasileira. 

BESS Sizing and BESS Dimensioning

image.png
image.png
image.png
BESS Dimensioning - Parte 1

scipy.optimize.linprog is a Python for solving Linear Programming problems

Python PV Curtailment BESS

Below is a simple optimization-based Python program that includes:

 

1. A 3-day hourly PV generation curve, with 72 hourly values.

2. A 3-day hourly electricity price curve.

3. A grid export limit, which causes curtailment.

4. A linear optimization model ("linprog") to operate the BESS hour by hour.

5. A BESS "sizing loop" search to find the best combination of MW/MWh.

This model is still simple, but it is much closer to a real techno-economic approach. The battery is no longer operated by a fixed rule. Instead, the optimization decides when to charge and discharge based on the PV generation profile, the export limit, the battery constraints, and the electricity price.The BESS charges when there is available PV energy that is economically useful to store, especially during hours of lower price or when the PV plant would otherwise be curtailed. It discharges when the electricity price is higher, respecting the grid export limit. The "sizing loop" tests different combinations of battery power in MW and battery energy capacity in MWh. For each candidate size, the model computes the optimal dispatch and estimates the annualized economic result.In this example, the optimal BESS size is selected by maximizing:

Annualized economic result =

Annualized Revenue - Annualized BESS Investment Cost​​

 

Esse Programa está com o lógica Errada.

Pecisa corrigir.

image.png

Hybrid Inverters

A Hybrid Inverter, often referred to as a multi-mode inverter, is the "brain" of a modern energy system. Unlike a traditional solar inverter that only converts DC power from solar panels into AC power for your home, a hybrid inverter manages power from three different sources simultaneously: Solar panels, Battery Storage (BESS), and the Utility Grid.

Core Functions

 

In the context of a BESS, the hybrid inverter acts as a two-way gateway:

  • DC to AC (Discharging): It takes the DC electricity stored in your batteries and converts it to AC to power your appliances.

  • AC to DC (Charging): It can take excess power from the grid (during off-peak hours) or from your solar panels and convert it to DC to charge the batteries.

  • Grid Management: It monitors grid stability and can disconnect the house to operate in "Island Mode" during a blackout, using the battery as the primary power source.

The hybrid inverter is the critical link that determines how a battery system performs. It typically handles several sophisticated tasks:

image.png

Why use a Hybrid Inverter instead of two separate ones?

 

In older systems, you would need a "Solar Inverter" and a separate "Battery Inverter" (known as AC-Coupling). A hybrid inverter (DC-Coupling) offers several advantages:

  1. Efficiency: Every time you convert electricity from DC to AC, you lose roughly 1–3% of the energy. A hybrid system keeps the solar energy in DC form to charge the battery directly, skipping one conversion step.

  2. Lower Cost: You only purchase, install, and maintain one piece of hardware instead of two.

  3. Unified Monitoring: You can see your solar production, battery health, and household consumption in a single app rather than juggling different platforms.

Technical Considerations

When selecting a hybrid inverter for a BESS, the most important specifications are:

  • Pass-through capacity: How much total power the inverter can handle from the grid.

  • Maximum Charge/Discharge Rate: This determines how quickly you can fill your batteries or how many heavy appliances at your home you can run at once.

  • Switch-over Time: High-end hybrids can switch to battery power in less than 10–20 milliseconds, meaning your computers or clocks won't even reset during a power flicker.

bottom of page