Skip to content

Commit a7097f2

Browse files
committed
Implement feedback from Ioannis
1 parent 239b0bf commit a7097f2

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

docs/examples/agrivoltaics/plot_agrivoltaics_ground_irradiance.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
AgriPV with infinite sheds
3-
==========================
2+
Agrivoltaic system modeling
3+
===========================
44
55
Irradiance at crop level between rows
66
"""
@@ -24,8 +24,8 @@
2424
# *Source: Adam R. Jensen*
2525

2626
import pvlib
27-
from pvlib.tools import cosd # we'll want this later
2827
import pandas as pd
28+
from pvlib.tools import cosd
2929
import matplotlib.pyplot as plt
3030

3131
location = pvlib.location.Location(latitude=55, longitude=10)
@@ -90,17 +90,16 @@
9090
albedo=albedo,
9191
model='haydavies',
9292
dni_extra=dni_extra,
93-
bifaciality=0.8,
93+
bifaciality=0.8, # [unitless] rear-side power relative to front-side
9494
)
9595

9696
# %%
9797
# Once the in-plane irradiance is known, we can estimate the PV array power.
9898
# For simplicity, we use the PVWatts model:
9999

100-
N_tables = 108
101-
modules_per_table = 14
100+
N_modules = 1512 # [unitless] Number of modules
102101
pdc0_per_module = 380 # [W] STC rating
103-
pdc0 = pdc0_per_module * modules_per_table * N_tables
102+
pdc0 = pdc0_per_module * N_modules
104103

105104
gamma_pdc = -0.004 # [1/degrees C]
106105

0 commit comments

Comments
 (0)