Installed PV power in each building #3202
-
Hello, The area covered by PV panels is known. Nevertheless, in the PV panel specification, the area for panels is not defined (just the lenght) and the capacity is given in minimum and maximum (W). I would like to know how to figure out with the PV installed capacity in each building, if you could help me. Irene |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi Irene The script that is called when launching the PV panel script is "photovoltaic.py" (normally located in your User/Documents/CityEnergyAnalyst/cea/technologies/solar folder). The function description in that file reads:
I hope that answers your question regarding the methodology. As for your second question, the nominal capacity is unfortunately not output directly. 'photovotalic.py' line 691 calculates the nominal capacity as:
The easiest way to get the capacity of the installed PV panels, would probably be to replicate the function above in a spreadsheet editor (e.g. Excel). |
Beta Was this translation helpful? Give feedback.
Hi Irene
The script that is called when launching the PV panel script is "photovoltaic.py" (normally located in your User/Documents/CityEnergyAnalyst/cea/technologies/solar folder). The function description in that file reads:
' This function first determines the surface area with sufficient solar radiation, and then calculates the optimal tilt angles of panels at each surface location. The panels are categorized into groups by their surface azimuths, tilt angles, and global irradiation. In the last [section of the function], electricity generation from PV panels of each group is calculated [and summed up]. '
I hope that answers your question regarding the methodology.
As for your second …