Skip to content

Commit bbbc52a

Browse files
authored
Update README.md
1 parent 065838c commit bbbc52a

1 file changed

Lines changed: 86 additions & 8 deletions

File tree

README.md

Lines changed: 86 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,32 @@ of district energy systems. All settings have to be provided via a YAML
1616
configuration file. LPagg was created as part of the publicly funded
1717
project futureSuN<sup id="a4">[4](#f4)</sup>.
1818

19-
With the configuration setting ``use_demandlib=True`` you may choose to let the
20-
VDI 4655 profiles be generated by [demandlib](https://github.com/oemof/demandlib).
21-
These functions are currently being ported over to demandlib, providing improved
22-
performance for large numbers of buildings.
23-
2419
The following table contains a summary of the available profiles and their sources:
2520

2621
| | | lpagg | lpagg + demandlib |
2722
| ---------------- | ------------------ | ----------------- | -------------------- |
2823
| HH (households) | Heating | VDI 4655 (lpagg) | VDI 4655 (demandlib) |
2924
| | Domestic hot water | VDI 4655 (lpagg) | VDI 4655 (demandlib) |
3025
| | Electricity | VDI 4655 (lpagg) | VDI 4655 (demandlib) |
31-
| GHD (commercial) | Heating | futuresolar | futuresolar |
32-
| | Domestic hot water | DOE | DOE |
33-
| | Electricity | BDEW-typical days | BDEW-typical days |
26+
| GHD (commercial) | Heating | futuresolar | BDEW (demandlib) |
27+
| | Domestic hot water | DOE | BDEW (demandlib) |
28+
| | Electricity | BDEW-typical days | BDEW (demandlib) |
29+
30+
With the configuration setting ``use_demandlib=True`` you may choose to let the
31+
VDI 4655 profiles be generated by [demandlib](https://github.com/oemof/demandlib).
32+
It is an alternative source of load profiles, compared to the built-in sources in
33+
``lpagg``.
34+
When selected, the ``demandlib`` implementation of VDI4655 is used for residential
35+
buildings, and the BDEW profiles from demandlib are used for commercial buildings,
36+
each providing space heating, domestic hot water and electricity profiles.
37+
38+
While those sources have their own APIs in ``demandlib``, ``lpagg`` provides a unified
39+
workflow to generate all those profiles from a single input set of buildings.
40+
``lpagg`` also handles holidays, daylight saving time, simultaneity effects and allows
41+
the use of custom weather data, while trying to be memory-efficient by avoiding
42+
duplicate generation of non-unique profiles when buildings share overlapping attributes.
43+
``lpagg`` was used to generate profiles for more then 100000 buildings from a single
44+
prompt.
3445

3546
Installation
3647
============
@@ -128,6 +139,73 @@ At the moment, no dedicated changelog is maintained. However, important
128139
changes are noted on the
129140
[release page](https://github.com/jnettels/lpagg/releases).
130141

142+
Reference
143+
=========
144+
Overview of attributes that make each profile unique:
145+
146+
- VDI4655:
147+
- house_type: Name of VDI4655 profile type
148+
- EFH: Single family home
149+
- MFH: Multi family home
150+
- For more details refer to
151+
https://demandlib.readthedocs.io/en/latest/vdi4655.html
152+
- N_Pers: Number of persons / residents per building
153+
- N_WE: Number of 'Wohneinheiten' (flats) per building
154+
- TRY: The test-reference-year region as defined by DWD and
155+
used in VDI4655
156+
- summer_temperature_limit: Daily mean temperature to seperate the
157+
seasons 'summer' and 'transition' in VDI4655 profiles
158+
- winter_temperature_limit: Daily mean temperature to seperate the
159+
seasons 'transition' and 'winter' in VDI4655 profiles
160+
161+
- BDEW:
162+
- house_type: Names of BDEW profile types
163+
- Naming convenction:
164+
- Seleted "heating type" and "electrical type" separated by
165+
"/".
166+
- E.g. "GHD/G1" creates general profiles for heating and
167+
electricity
168+
169+
- heating type:
170+
171+
- EFH: Einfamilienhaus (single family house)
172+
- MFH: Mehrfamilienhaus (multi family house)
173+
- GMK: Metall und Kfz (metal and automotive)
174+
- GHA: Einzel- und Großhandel (retail and wholesale)
175+
- GKO: Gebietskörperschaften, Kreditinstitute und Versicherungen
176+
(Local authorities, credit institutions and insurance companies)
177+
- GBD: sonstige betriebliche Dienstleistung
178+
(other operational services)
179+
- GGA: Gaststätten (restaurants)
180+
- GBH: Beherbergung (accommodation)
181+
- GWA: Wäschereien, chemische Reinigungen (laundries, dry cleaning)
182+
- GGB: Gartenbau (horticulture)
183+
- GBA: Backstube (bakery)
184+
- GPD: Papier und Druck (paper and printing)
185+
- GMF: haushaltsähnliche Gewerbebetriebe
186+
(household-like business enterprises)
187+
- GHD: Summenlastprofil Gewerbe/Handel/Dienstleistungen
188+
(Total load profile Business/Commerce/Services)
189+
190+
- electrical type:
191+
192+
- G0: General trade/business/commerce
193+
- G1: Business on weekdays 8 a.m. - 6 p.m.
194+
- G2: Businesses with heavy to predominant consumption in the
195+
evening hours
196+
- G3: Continuous business
197+
- G4: Shop/barber shop
198+
- G5: Bakery
199+
- G6: Weekend operation
200+
- G7: Mobile phone transmitter station
201+
- L0: General farms
202+
- L1: Farms with dairy farming/part-time livestock farming
203+
- L2: Other farms
204+
- H0: Household
205+
206+
- For more details refer to
207+
https://demandlib.readthedocs.io/en/latest/bdew.html
208+
131209

132210

133211
Literature

0 commit comments

Comments
 (0)