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

Enhanced the Software with Semi-Integration #2415

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
13 changes: 7 additions & 6 deletions pvlib/pvsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -1008,10 +1008,13 @@ def _infer_temperature_model_params(self):
return temperature._temperature_model_params('sapm', param_set)
elif 'freestanding' in param_set:
return temperature._temperature_model_params('pvsyst',
'freestanding')
'freestanding')
elif 'insulated' in param_set: # after SAPM to avoid confusing keys
return temperature._temperature_model_params('pvsyst',
'insulated')
'insulated')
elif 'semi_integrated' in param_set: # Add this condition
return temperature._temperature_model_params('pvsyst',
'semi_integrated')
else:
return {}

Expand Down Expand Up @@ -1395,12 +1398,10 @@ class FixedMount(AbstractMount):
West=270. [degrees]

racking_model : str, optional
Valid strings are ``'open_rack'``, ``'close_mount'``,
``'insulated_back'``, ``'freestanding'`` and ``'insulated'``.
Valid strings are 'open_rack', 'close_mount', 'insulated_back',
'freestanding', 'insulated', and 'semi_integrated'.
Used to identify a parameter set for the SAPM or PVsyst cell
temperature model.
See :py:func:`~pvlib.temperature.sapm_module` and
:py:func:`~pvlib.temperature.pvsyst_cell` for definitions.

module_height : float, optional
The height above ground of the center of the module [m]. Used for
Expand Down
13 changes: 12 additions & 1 deletion pvlib/temperature.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
'insulated_back_glass_polymer': {'a': -2.81, 'b': -.0455, 'deltaT': 0},
},
'pvsyst': {'freestanding': {'u_c': 29.0, 'u_v': 0},
'insulated': {'u_c': 15.0, 'u_v': 0}}
'insulated': {'u_c': 15.0, 'u_v': 0},
'semi_integrated': {'u_c': 20.0, 'u_v': 0}}
}
"""Dictionary of temperature parameters organized by model.

Expand Down Expand Up @@ -365,6 +366,16 @@ def pvsyst_cell(poa_global, temp_air, wind_speed=1.0, u_c=29.0, u_v=0.0,
alpha_absorption : numeric, default 0.9
Absorption coefficient. Parameter :math:`\alpha` in :eq:`pvsyst`.

freestanding : Uc = 29 W/(m^2*C), Uv = 0 W/(m^2*C*m/s)

insulated : Uc = 15 W/(m^2*C), Uv = 0 W/(m^2*C*m/s)

semi_integrated : Uc = 20 W/(m^2*C), Uv = 0 W/(m^2*C*m/s)
(for roof mounted systems with air flow beneath modules)

PVUSA : Uc = 25 W/(m^2*C), Uv = 1.2 W/(m^2*C*m/s)


Returns
-------
numeric, values in degrees Celsius
Expand Down
18 changes: 18 additions & 0 deletions tests/test_pvsystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -2504,3 +2504,21 @@ def test_Array_temperature_missing_parameters(model, keys):
array.temperature_model_parameters = params
with pytest.raises(KeyError, match=match):
array.get_cell_temperature(irrads, temps, winds, model)

def test_pvsyst_semi_integrated_params():
"""Test that semi_integrated racking model correctly gets PVsyst parameters."""
# Create a mount with semi_integrated racking model
mount = pvsystem.FixedMount(surface_tilt=30, surface_azimuth=180,
racking_model='semi_integrated')

# Create an array with this mount
array = pvsystem.Array(mount=mount, module_type='glass_glass')

# Get the inferred temperature model parameters
params = array._infer_temperature_model_params()

# Check that the correct parameters were returned
assert 'u_c' in params
assert 'u_v' in params
assert params['u_c'] == 20.0
assert params['u_v'] == 0.0