forked from ruboerner/Solarertragsrechner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
solarertragsrechner.py
413 lines (318 loc) · 13.4 KB
/
solarertragsrechner.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
import marimo
__generated_with = "0.6.5"
app = marimo.App(width="medium")
@app.cell
def __():
import marimo as mo
mo.Html(
"""
<link href="https://fonts.googleapis.com/css?family=Atkinson+Hyperlegible" rel="stylesheet">
<style>
:root {
--text-font: "Atkinson Hyperlegible";
--heading-font: "Atkinson Hyperlegible";
}
</style>
"""
)
return mo,
@app.cell
def __():
import pysolar.solar as so
import pysolar.radiation as pr
import pytz
from datetime import datetime, timedelta
import time
import os
import math
import numpy as np
from matplotlib import pyplot as plt, dates
from scipy import integrate
import scienceplots
plt.style.use(['science', 'notebook'])
return (
dates,
datetime,
integrate,
math,
np,
os,
plt,
pr,
pytz,
scienceplots,
so,
time,
timedelta,
)
@app.cell
def __(datetime, math, np, pytz, so, timedelta):
def daterange(start_date, end_date):
delta = timedelta(minutes=5)
while start_date < end_date:
yield start_date
start_date += delta
def getcos(azimuth, elevation, orientation, angle):
return np.array([
np.dot(get_n(a, e), get_n(orientation, angle)) for a, e in zip(azimuth, elevation)
])
def get_attenuation(when, altitude_deg):
import pysolar
# from Masters, p. 412
is_daytime = (altitude_deg > 0)
day = pysolar.radiation.math.tm_yday(when)
flux = pysolar.radiation.get_apparent_extraterrestrial_flux(day)
optical_depth = pysolar.radiation.get_optical_depth(day)
# air_mass_ratio = pysolar.radiation.get_air_mass_ratio(altitude_deg)
sin_beta = math.sin(math.radians(altitude_deg))
air_mass_ratio = np.sqrt((708 * sin_beta)**2 + 1417) - 708 * sin_beta
return flux * pysolar.radiation.math.exp(-1 * optical_depth * air_mass_ratio) * is_daytime
def get_n(el, az):
return np.array([
np.cos(np.deg2rad(az)) * np.cos(np.deg2rad(el)),
np.cos(np.deg2rad(az)) * np.sin(np.deg2rad(el)),
np.sin(np.deg2rad(az))
])
def panel(year, month, day, orientation, angle, begin=4, end=22, lat=50.924974, lon=13.330355):
timezone = pytz.timezone('Europe/Berlin')
start_date_ = datetime(year, month, day, begin, 0)
end_date_ = datetime(year, month, day, end, 0)
start_date = timezone.localize(start_date_)
end_date = timezone.localize(end_date_)
azimuth = []
elevation = []
hours = []
for d in daterange(start_date, end_date):
hours.append(d)
azimuth.append(so.get_azimuth(lat, lon, d))
elevation.append(so.get_altitude(lat, lon, d))
attn = np.array([get_attenuation(start_date, alt) for alt in elevation])
cosgamma = np.hstack(getcos(azimuth, elevation, orientation, angle))
cosgamma = np.clip(cosgamma, 0, 1)
remove = np.where(np.array(elevation) < 0, True, False)
cosgamma[remove] = 0.0
return cosgamma, attn, hours, elevation
def get_index_sunrise_sunset(elevation):
el = np.array(elevation)
first = next(x for x, val in enumerate(el) if val > 0)
last = next(x for x in range(np.size(el)-1, -1, -1) if el[x] > 0)
return first, last
return (
daterange,
get_attenuation,
get_index_sunrise_sunset,
get_n,
getcos,
panel,
)
@app.cell
def __(mo):
intro = mo.md(
"""
# 🌤️ Optimale Ausrichtung von Solarpanels
Diese Anwendung berechnet näherungsweise die von bis zu vier Solarmodulen erzeugte Leistung ohne Berücksichtigung von Streuung oder ortsabhängiger Verschattung.
Benutzer können das gewünschte Datum sowie die Azimut- und Anstellwinkel der Module eingeben.
Die Web-Anwendung basiert auf der genauen Berechnung des Sonnenstandes, die vom Python-Modul [pysolar](https://github.com/pingswept/pysolar) bereitgestellt wird.
Darüberhinaus werden die von den Solarmodulen über einen Tag umgewandelte Energie in kWh sowie die Volllaststunden angezeigt.
Durch Bewertung des erzielten Gesamtertrages ist es möglich, die optimale Ausrichtung der Solarmodule für ausgewählte Tage *interaktiv* zu ermitteln und die Energieausbeute zu maximieren.
"""
)
return intro,
@app.cell
def __(intro):
intro.callout(kind="info")
return
@app.cell
def __(mo):
hintergrund = mo.md(
r'''
## Warum der Sonnenstand für die Berechnung der optimalen Ausrichtung eines Solarpanels wichtig ist
Um die maximale Effizienz eines Solarpanels zu gewährleisten, muss es so ausgerichtet werden, dass es die größtmögliche Menge an Sonnenstrahlung einfängt. Dafür ist es notwendig, die Orientierung des Solarpanels zu kennen, die durch zwei Hauptparameter beschrieben wird: Azimut und Anstellwinkel.
- **Azimut**: Dies ist der Winkel in der horizontalen Ebene, gemessen von Norden im Uhrzeigersinn. Der Azimutwinkel des Solarpanels sollte so eingestellt werden, dass es möglichst direkt auf die Sonne ausgerichtet ist, je nachdem, zu welcher Tageszeit und in welcher Jahreszeit die meiste Sonneneinstrahlung zu erwarten ist.
- **Anstellwinkel**: Dies ist der Neigungswinkel des Solarpanels relativ zur Horizontalen. Der Anstellwinkel sollte so eingestellt werden, dass die Sonnenstrahlen im rechten Winkel auf das Panel treffen. Dies maximiert die absorbierte Sonnenenergie und verbessert die Effizienz der Stromerzeugung.
Der Sonnenstand ändert sich im Tages- und Jahresverlauf ständig, daher ist es wichtig, diese Veränderungen zu berücksichtigen, um die optimale Ausrichtung des Solarpanels kontinuierlich zu gewährleisten. Eine genaue Berechnung und Anpassung von Azimut und Anstellwinkel basierend auf dem aktuellen Sonnenstand ermöglicht es, die Energieausbeute eines Solarpanels zu maximieren.
## Anleitung zur Berechnung des Skalarprodukts aus den Winkeln von Solarpanel und Sonnenstand
Das Skalarprodukt zwischen zwei Vektoren kann verwendet werden, um den Winkel zwischen dem Solarpanel und der Sonnenstrahlung zu berechnen. Hier ist eine Schritt-für-Schritt-Anleitung, wie das Skalarprodukt aus den Winkeln von Solarpanel und Sonnenstand berechnet wird:
### Definition der Winkel
- **Azimut des Solarpanels ($\alpha_P$)**: Der horizontale Winkel des Solarpanels gemessen von Norden im Uhrzeigersinn.
- **Anstellwinkel des Solarpanels ($\gamma_P$)**: Der Neigungswinkel des Solarpanels relativ zur Horizontalen.
- **Azimut der Sonne ($\alpha_S$)**: Der horizontale Winkel der Sonne gemessen von Norden im Uhrzeigersinn.
- **Sonnenhöhe ($\gamma_S$)**: Der Winkel der Sonne über dem Horizont.
### Berechnung der Richtungsvektoren
Der Richtungsvektor des Solarpanels kann durch seine Azimut- und Anstellwinkel wie folgt dargestellt werden:
$$
\mathbf{n}_{P} = \begin{pmatrix}
\cos(\alpha_P) \cdot \cos(\gamma_P) \\\\
\sin(\alpha_P) \cdot \cos(\gamma_P) \\\\
\sin(\gamma_P)
\end{pmatrix}
$$
Der Richtungsvektor zur Sonne kann durch ihren Azimut- und Höhenwinkel wie folgt dargestellt werden:
$$
\mathbf{n}_{S} = \begin{pmatrix}
\cos(\alpha_S) \cdot \cos(\gamma_S) \\\\
\sin(\alpha_S) \cdot \cos(\gamma_S) \\\\
\sin(\gamma_S)
\end{pmatrix}
$$
### Berechnung des Skalarprodukts
Das Skalarprodukt \(\mathbf{n}_{P} \cdot \mathbf{n}_{S}\) der beiden Vektoren wird berechnet als:
$$
\mathbf{n}_{P} \cdot \mathbf{n}_{S} = (\cos(\alpha_P) \cdot \cos(\gamma_P)) \cdot (\cos(\alpha_S) \cdot \cos(\gamma_S)) + (\sin(\alpha_P) \cdot \cos(\gamma_P)) \cdot (\sin(\alpha_S) \cdot \cos(\gamma_S)) + (\sin(\gamma_P)) \cdot (\sin(\gamma_S))
$$
### Verwendung des Skalarprodukts
Das Skalarprodukt liefert einen Wert, der proportional zum Kosinus des Winkels zwischen den beiden Vektoren ist. Dieser Wert kann verwendet werden, um die Effizienz der Ausrichtung des Solarpanels relativ zur aktuellen Position der Sonne zu bewerten.
Durch die Berechnung des Skalarprodukts können wir feststellen, wie gut das Solarpanel zur Sonne ausgerichtet ist. Ein größerer Wert des Skalarprodukts bedeutet eine bessere Ausrichtung und damit eine höhere Effizienz bei der Energieerzeugung.
'''
)
return hintergrund,
@app.cell
def __(hintergrund, mo):
mo.accordion(
{f"{mo.icon('hugeicons:math')} Mathematischer Hintergrund": hintergrund}
)
return
@app.cell
def __(mo):
date = mo.ui.date()
return date,
@app.cell
def __(date, mo):
mo.hstack([mo.md("Datum: "), date], gap=1.0, justify="start")
return
@app.cell
def __(mo):
coords = mo.md("{lat} {lon}").batch(
lat=mo.ui.text(value='50.924974', label='Breitengrad:'),
lon=mo.ui.text(value='13.330355', label='Längengrad:')
)
coords
return coords,
@app.cell
def __(coords):
lat = float(coords.value["lat"])
lon = float(coords.value["lon"])
return lat, lon
@app.cell
def __(date):
year = date.value.year
month = date.value.month
day = date.value.day
return day, month, year
@app.cell
def __(mo):
n = mo.ui.slider(1, 4, value=1)
return n,
@app.cell
def __(mo, n):
mo.hstack([mo.md(f"Anzahl der installierten Panels (1...4): "), n, mo.md(f"{n.value}")], gap=2.0, justify='start')
return
@app.cell
def __(mo, n):
panels = mo.ui.array(mo.md("{az} {el} <br> {power} {area} <br> {r}").batch(
az=mo.ui.slider(0, 359, 5, label="Azimut", value=((i+1) * 60) % 360, show_value=True),
el=mo.ui.slider(0, 90, 5, label="Anstellwinkel", value=30, show_value=True),
power=mo.ui.text(value='385', label=r'Leistung [Wp]: $~~~~~~~~~~~~$'),
area=mo.ui.text(value='1.86', label=r'Fläche [m$^2$]:'),
r=mo.ui.text(value='0.2', label=r'Wirkungsgrad [$0\dots 1$]:')
) for i in range(n.value))
mo.vstack(panels)
return panels,
@app.cell
def __(n, np, panels):
P = np.array([panels[i].value['power'] for i in range(n.value)], dtype=float)
F = np.array([panels[i].value['area'] for i in range(n.value)], dtype=float)
R = np.array([panels[i].value['r'] for i in range(n.value)], dtype=float)
return F, P, R
@app.cell
def __(F, R, day, lat, lon, month, n, np, panel, panels, year):
CC, A, hours, elevation = panel(year, month, day, panels[0]["az"].value, panels[0]["el"].value, lat=lat, lon=lon)
L = (CC * A) * F[0] * R[0]
L = np.expand_dims(L, axis=0)
T = L[0]
nt = len(hours)
if n.value > 1:
for i in range(1, n.value):
CC = np.vstack([CC, panel(year, month, day, panels[i]["az"].value, panels[i]["el"].value)[0]])
L = np.vstack([L, (CC[i] * A) * F[i] * R[i]])
T = np.sum(L, axis=0)
return A, CC, L, T, elevation, hours, i, nt
@app.cell
def __(T, hours, integrate, np):
tt = np.array([v.timestamp() - hours[0].timestamp() for v in hours])
I = integrate.simpson(T, x=tt, dx=np.diff(tt)[0])
return I, tt
@app.cell
def __(
L,
T,
dates,
elevation,
get_index_sunrise_sunset,
hours,
n,
plt,
pytz,
):
fig, ax = plt.subplots(1, 1, figsize=(11, 4))
first, last = get_index_sunrise_sunset(elevation)
ax.axvspan(hours[first], hours[last], color='yellow', alpha=0.3, label=None)
ax.axvspan(hours[0], hours[first], color='darkblue', alpha=0.5, label=None)
ax.axvspan(hours[last], hours[-1], color='darkblue', alpha=0.5, label=None)
[ax.plot(hours, L[i], linewidth=1, label = f"Panel {str(i+1)}") for i in range(n.value)]
ax.plot(hours, T, linewidth=3, color='green', label='Gesamtleistung')
ax.fill_between(hours, T, color='green', alpha=0.3)
ax.xaxis.set_major_formatter(dates.DateFormatter('%H:%M', tz=pytz.timezone("Europe/Berlin")))
#ax.set_ylim(0, np.sum(P))
ax.set_xlim(hours[0], hours[-1])
ax.grid(visible=True)
ax.set_xlabel("Uhrzeit")
ax.set_ylabel('Leistung in W')
ax.legend(loc='upper right', fontsize='small', frameon=True)
ax
return ax, fig, first, last
@app.cell
def __(mo):
wel = mo.md(
"""
Der *Gesamtertrag* $E$ wird durch Integration der *Leistung* $P$ über den Tag ermittelt:
$$
E = \int_{t=t_0}^{t_1} P(t) \, \mathrm dt
$$
Der Wert von $E$ wird über eine einfache Simpson-Regel numerisch berechnet.
Die *Volllaststunden* $V$ ergeben sich aus dem Verhältnis von Gesamtertrag $E$ und der *installierten Nennleistung* $P_N$:
$$
V = \\frac{E}{P_N}.
$$
"""
)
return wel,
@app.cell
def __(mo, wel):
mo.accordion(
{f"{mo.as_html(mo.icon('hugeicons:math'))}Berechnung des Gesamtertrages und der Volllaststunden": wel}
)
return
@app.cell
def __(I, P, mo, np):
mo.md(
f"""
Gesamtertrag:
**{mo.as_html('{0:.3f}'.format(I / 3600000))} kWh**
Volllaststunden: **{mo.as_html('{0:.2f}'.format(I / 3600 / np.sum(P)))} h**
"""
)
return
@app.cell
def __(mo):
mo.md(
"""
<span style="font-size:0.7em;">
©️ 2024 • Ralph-Uwe Börner •
</span>
"""
)
return
if __name__ == "__main__":
app.run()