运行 pvlib 模型链与 pvwatts 模型
Run pvlib modelchain with pvwatts model
我想 运行 带有 pvwatts 模型的 pvlib 模型链:
pvwatts_module={'pdc0':250,'gamma_pdc':-0.005}
pvwatts_inverter={'pdc0':4600,'eta_inv_nom':0.93}
location=Location(latitude,longitude, tz, altitude)
system = PVSystem(surface_tilt = surface_tilt, surface_azimuth = surface_azimuth, albedo = albedo,\
surface_type = None, module = None, module_parameters = pvwatts_module,\
modules_per_string = 21, strings_per_inverter = 1,\
inverter = None, inverter_parameters = pvwatts_inverter,\
racking_model = 'roof_mount_cell_glassback', name = None)
mc = ModelChain(system, fx_model.location, dc_model='pvwatts',ac_model='pvwatts',aoi_model='physical',spectral_model='no_loss',temp_model='sapm')
mc.run_model(fx_data.index, weather=fx_data);
modules_per_string = 21
对产生的交流电源没有影响。模型链是否不支持 pvwatts 的这个参数,或者我的代码有错误?我现在的解决方法是
pvwatts_module={'pdc0':5250,'gamma_pdc':-0.005}
谢谢
ModelChain
不支持 pvwatts 模型的那些参数。
对于其他型号,pvlib python 使用 modules_per_string
和 strings_per_inverter
来缩放电压和电流。但是 PVWatts 没有电压和电流的概念,因此无法应用相同的缩放比例。如果您希望看到应用的功率缩放等于参数的乘积,请随时在 GitHub 上提出问题和拉取请求。
我想 运行 带有 pvwatts 模型的 pvlib 模型链:
pvwatts_module={'pdc0':250,'gamma_pdc':-0.005}
pvwatts_inverter={'pdc0':4600,'eta_inv_nom':0.93}
location=Location(latitude,longitude, tz, altitude)
system = PVSystem(surface_tilt = surface_tilt, surface_azimuth = surface_azimuth, albedo = albedo,\
surface_type = None, module = None, module_parameters = pvwatts_module,\
modules_per_string = 21, strings_per_inverter = 1,\
inverter = None, inverter_parameters = pvwatts_inverter,\
racking_model = 'roof_mount_cell_glassback', name = None)
mc = ModelChain(system, fx_model.location, dc_model='pvwatts',ac_model='pvwatts',aoi_model='physical',spectral_model='no_loss',temp_model='sapm')
mc.run_model(fx_data.index, weather=fx_data);
modules_per_string = 21
对产生的交流电源没有影响。模型链是否不支持 pvwatts 的这个参数,或者我的代码有错误?我现在的解决方法是
pvwatts_module={'pdc0':5250,'gamma_pdc':-0.005}
谢谢
ModelChain
不支持 pvwatts 模型的那些参数。
对于其他型号,pvlib python 使用 modules_per_string
和 strings_per_inverter
来缩放电压和电流。但是 PVWatts 没有电压和电流的概念,因此无法应用相同的缩放比例。如果您希望看到应用的功率缩放等于参数的乘积,请随时在 GitHub 上提出问题和拉取请求。