Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add detailed PV model (pvsamv1) #99

Merged
merged 16 commits into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
97 changes: 97 additions & 0 deletions hybrid/detailed_pv_plant.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,97 @@
from typing import Union, Optional, Sequence, Any

import PySAM.Pvsamv1 as Pvsam
import PySAM.Singleowner as Singleowner

from hybrid.power_source import *
from hybrid.layout.pv_design_utils import *
from hybrid.layout.pv_layout import PVLayout, PVGridParameters
from hybrid.dispatch.power_sources.pv_dispatch import PvDispatch


class DetailedPVPlant(PowerSource):
_system_model: Pvsam.Pvsamv1
_financial_model: Union[Any, Singleowner.Singleowner]
_layout: Union[Any, PVLayout]
_dispatch: PvDispatch

def __init__(self,
site: SiteInfo,
pv_config: dict):
"""

:param pv_config: dict, with following keys:
'tech_config': dict, contains parameters for pvsamv1 technology model
'fin_config': dict, contains `model_type` and any inputs for chosen financial model type
'layout_params': optional DetailedPVParameters, the design vector w/ values. Required for layout modeling
'layout_config': optional dict, contains all keys for PVLayoutConfig dataclass. Required for layout modeling
"""
system_model = Pvsam.default("FlatPlatePVSingleOwner")
financial_model = Singleowner.from_existing(system_model, "FlatPlatePVSingleOwner")

super().__init__("SolarPlant", site, system_model, financial_model)

self._system_model.SolarResource.solar_resource_data = self.site.solar_resource.data

self.dc_degradation = [0]

params: Optional[PVGridParameters] = None
if 'layout_params' in pv_config.keys():
params: PVGridParameters = pv_config['layout_params']
self._layout = PVLayout(site, system_model, params)

self._dispatch: PvDispatch = None

if 'tech_config' in pv_config.keys():
self.processed_assign(pv_config['tech_config'])

def processed_assign(self, params):
"""
Assign attributes from dictionary with additional processing
to enforce coherence between attributes
"""
self.assign(params)
calculated_system_capacity = verify_capacity_from_electrical_parameters(
system_capacity_target=self.value('system_capacity'),
n_strings=self.value('subarray1_nstrings'),
modules_per_string=self.value('subarray1_modules_per_string'),
module_power=get_module_power(self._system_model) * 1e-3
)
self._system_model.SystemDesign.system_capacity = calculated_system_capacity
dguittet marked this conversation as resolved.
Show resolved Hide resolved

@property
def system_capacity(self) -> float:
"""pass through to established name property"""
return self.system_capacity_kw

@system_capacity.setter
def system_capacity(self, size_kw: float):
"""pass through to established name setter"""
self.system_capacity_kw = size_kw

@property
def system_capacity_kw(self) -> float:
return self._system_model.value('system_capacity') # [kW] DC

@system_capacity_kw.setter
def system_capacity_kw(self, size_kw: float):
"""
Sets the system capacity and updates the system, cost and financial model
:param size_kw: DC system size in kW
:return:
"""
self._system_model.value('system_capacity', size_kw)

@property
def dc_degradation(self) -> float:
"""Annual DC degradation for lifetime simulations [%/year]"""
return self._system_model.Lifetime.dc_degradation

@dc_degradation.setter
def dc_degradation(self, dc_deg_per_year: Sequence):
self._system_model.Lifetime.dc_degradation = dc_deg_per_year

@property
def dc_ac_ratio(self) -> float:
return self.system_capacity * 1e3 / \
(self.value('inverter_count') * get_inverter_power(self._system_model))
dguittet marked this conversation as resolved.
Show resolved Hide resolved
8 changes: 7 additions & 1 deletion hybrid/hybrid_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from tools.analysis import create_cost_calculator
from hybrid.sites import SiteInfo
from hybrid.pv_source import PVPlant
from hybrid.detailed_pv_plant import DetailedPVPlant
from hybrid.wind_source import WindPlant
from hybrid.tower_source import TowerPlant
from hybrid.trough_source import TroughPlant
Expand Down Expand Up @@ -148,7 +149,12 @@ def __init__(self,
power_sources[k.lower()] = power_sources.pop(k)

if 'pv' in power_sources.keys():
self.pv = PVPlant(self.site, power_sources['pv'])
if 'pv_plant' in power_sources['pv']:
self.pv = power_sources['pv']['pv_plant'] # User instantiated plant
elif 'use_pvwatts' in power_sources['pv'].keys() and not power_sources['pv']['use_pvwatts']:
self.pv = DetailedPVPlant(self.site, power_sources['pv']) # PVSAMv1 plant
dguittet marked this conversation as resolved.
Show resolved Hide resolved
else:
self.pv = PVPlant(self.site, power_sources['pv']) # PVWatts plant
self.power_sources['pv'] = self.pv
logger.info("Created HybridSystem.pv with system size {} mW".format(power_sources['pv']))
if 'wind' in power_sources.keys():
Expand Down
Loading