Lauingen Energy Park

The Lauingen Energy Park is a 25.7–megawatt (MW) photovoltaic power station, located in Bavarian Swabia, Germany. It covers an area of 63 hectares (155.7 acres) and was commissioned in June 2010.[2]

Lauingen Energy Park
Lauingen Energy Park
CountryGermany
LocationLauingen
Coordinates48°32′13″N 10°25′27″E
StatusOperational
Construction began2008[1]
Commission dateJune 2010[2]
Solar farm
TypeFlat-panel PV
Site area63 ha (155.7 acres)
Power generation
Units operational306,084
(288,132 First Solar
17,952 Yingli)
Nameplate capacity25.7 MW
Capacity factor12.0%
Annual net output26.98 GWh[3]

The project was built in three phases:

  • The 10.0 MW Helmeringen 1 (already commissioned in 2009)
  • The 9.4 MW Helmeringen 2
  • The 6.3 MW Helmeringen 3 (built and commissioned in 2010)

The largest solar power station in Swabia was built by the German company Gehrlicher Solar and features the following key figures:[2]

gollark: This is far more readable than foolish "shell scripts", and actually quite fast.
gollark: It's HIGHLY advanced.
gollark: If you want, I can make it compile in parallel, but I haven't done this.
gollark: ```python#!/usr/bin/env python3import os, subprocess, sysDIR = os.path.abspath(os.path.dirname(sys.argv[0]))CC = ["gcc", "-Wall"]CACHE = os.path.join(DIR, "_cache")EXT = ".c"OUT_FILE = os.path.join(DIR, "out")if not os.path.exists(CACHE): os.mkdir(CACHE)changed_any = Falseobject_files = []for thing in os.listdir(DIR): if thing.endswith(EXT): path = os.path.join(DIR, thing) name, _, _ = thing.rpartition(EXT) cache_entry = os.path.join(CACHE, f"{name}.o") try: cache_updated_at = os.stat(cache_entry).st_mtime except FileNotFoundError: cache_updated_at = 0 code_updated_at = os.stat(path).st_mtime if cache_updated_at < code_updated_at: print(thing) subprocess.run(CC + ["-c", "-o", cache_entry, path]) changed_any = True object_files.append(cache_entry)if changed_any or not os.path.exists(OUT_FILE): subprocess.run(CC + ["-o", OUT_FILE] + object_files)else: print("no changes")```
gollark: Correction: 7.

See also

References


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.