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 11"""
2- AgriPV with infinite sheds
3- ==========================
2+ Agrivoltaic system modeling
3+ ===========================
44
55Irradiance at crop level between rows
66"""
2424# *Source: Adam R. Jensen*
2525
2626import pvlib
27- from pvlib .tools import cosd # we'll want this later
2827import pandas as pd
28+ from pvlib .tools import cosd
2929import matplotlib .pyplot as plt
3030
3131location = pvlib .location .Location (latitude = 55 , longitude = 10 )
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
102101pdc0_per_module = 380 # [W] STC rating
103- pdc0 = pdc0_per_module * modules_per_table * N_tables
102+ pdc0 = pdc0_per_module * N_modules
104103
105104gamma_pdc = - 0.004 # [1/degrees C]
106105
You can’t perform that action at this time.
0 commit comments