Have written a python application that I'm running from command line and linux terminal. However, each time I run the application I see the following deprecation warning from pvlib as shown below:
C:\Users\DevUser\pvlib_standalone_app\myapp_pvlib_agmt.py:322: pvlibDeprecationWarning: Parameter 'g_poa_effective' has been renamed since 0.13.0. and will be removed soon. Please use 'effective_irradiance' instead.
What can I do to suppress or avoid these warnings? It's triggered by the following function:
pvlib.pvsystem.pvwatts_dc(
g_poa_effective=poa_irradiance['poa_global'],
temp_cell=cell_temperature,
pdc0=module_parameters_660['pdc0'],
gamma_pdc=module_parameters_660['gamma_pdc']
)