Heat Storage
See also
Note
A Heat Storage consists of an element and a controller. The element defines it’s physical parameters, while the controller governs the operational logic.
The create_controlled function creates both and connects them.
Create Controlled Function
Controller
Graphical representation here
Input Static Data
Parameter |
Description |
Unit |
|---|---|---|
name |
Custom name for the Storage |
N/A |
in_service |
Indicates if the Storage is in service |
N/A |
q_capacity_kwh |
Capacity in kilowatt-hours |
kWh |
Input Time Series
Parameter |
Description |
Unit |
|---|---|---|
q_received_kw |
Received heat power |
kW |
Output Time Series
Parameter |
Description |
Unit |
|---|---|---|
soc |
State of Charge |
% |
q_delivered_kw |
Delivered heat power |
kW |
Mapping
The Simple Storage model uses Generic Mapping Scheme.
Model
- class pandaprosumer.controller.models.HeatStorageController(prosumer, heat_storage_object, order, level, init_soc=0.0, in_service=True, index=None, **kwargs)[source]
Controller for heat storage systems.
- control_step(prosumer)[source]
Executes the control step for the controller.
- Parameters:
prosumer – The prosumer object
The heat storage model computes the heat received and delivered by the storage element, and updates the state of charge (SOC) accordingly.
The SOC is adjusted each timestep to reflect the energy balance within the storage unit. If the requested heat exceeds available storage, the delivery is capped to the actual available energy.