File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
docs/examples/agrivoltaics Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 1
1
"""
2
- AgriPV with infinite sheds
3
- ==========================
2
+ Agrivoltaic system modeling
3
+ ===========================
4
4
5
5
Irradiance at crop level between rows
6
6
"""
24
24
# *Source: Adam R. Jensen*
25
25
26
26
import pvlib
27
- from pvlib .tools import cosd # we'll want this later
28
27
import pandas as pd
28
+ from pvlib .tools import cosd
29
29
import matplotlib .pyplot as plt
30
30
31
31
location = pvlib .location .Location (latitude = 55 , longitude = 10 )
90
90
albedo = albedo ,
91
91
model = 'haydavies' ,
92
92
dni_extra = dni_extra ,
93
- bifaciality = 0.8 ,
93
+ bifaciality = 0.8 , # [unitless] rear-side power relative to front-side
94
94
)
95
95
96
96
# %%
97
97
# Once the in-plane irradiance is known, we can estimate the PV array power.
98
98
# For simplicity, we use the PVWatts model:
99
99
100
- N_tables = 108
101
- modules_per_table = 14
100
+ N_modules = 1512 # [unitless] Number of modules
102
101
pdc0_per_module = 380 # [W] STC rating
103
- pdc0 = pdc0_per_module * modules_per_table * N_tables
102
+ pdc0 = pdc0_per_module * N_modules
104
103
105
104
gamma_pdc = - 0.004 # [1/degrees C]
106
105
You can’t perform that action at this time.
0 commit comments