|
16 | 16 | from dataclasses import dataclass |
17 | 17 | from abc import ABC, abstractmethod |
18 | 18 | from typing import Optional, Union |
19 | | -from pvlib._deprecation import renamed_kwarg_warning |
20 | 19 | import pvlib # used to avoid albedo name collision in the Array class |
21 | 20 | from pvlib import (atmosphere, iam, inverter, irradiance, |
22 | 21 | singlediode as _singlediode, spectrum, temperature) |
@@ -843,8 +842,6 @@ def scale_voltage_current_power(self, data): |
843 | 842 | for array, data in zip(self.arrays, data) |
844 | 843 | ) |
845 | 844 |
|
846 | | - @renamed_kwarg_warning( |
847 | | - "0.13.0", "g_poa_effective", "effective_irradiance") |
848 | 845 | @_unwrap_single_value |
849 | 846 | def pvwatts_dc(self, effective_irradiance, temp_cell): |
850 | 847 | """ |
@@ -2884,8 +2881,6 @@ def scale_voltage_current_power(data, voltage=1, current=1): |
2884 | 2881 | return df_sorted |
2885 | 2882 |
|
2886 | 2883 |
|
2887 | | -@renamed_kwarg_warning( |
2888 | | - "0.13.0", "g_poa_effective", "effective_irradiance") |
2889 | 2884 | def pvwatts_dc(effective_irradiance, temp_cell, pdc0, gamma_pdc, temp_ref=25., |
2890 | 2885 | k=None, cap_adjustment=False): |
2891 | 2886 | r""" |
|
0 commit comments