Description Usage Arguments Value Author(s) References See Also Examples
Simulate the behaviour of a grid connected PV system under different
conditions of irradiance and temperature. This function is used by the
prodGCPV
function.
1 | fProd(inclin, module, generator, inverter, effSys)
|
inclin |
A |
module |
list of numeric values with information about the PV module,
|
generator |
list of numeric values with information about the generator,
|
inverter |
list of numeric values with information about the DC/AC inverter,
|
effSys |
list of numeric values with information about the system losses,
|
If inclin
is zoo
or Gef
object, the result
is a zoo
object with these components (if inclin
is a data.frame
the result is also a data.frame
with these same components):
Tc |
cell temperature, ^{\circ}{\rm C}. |
Voc, Isc, Vmpp, Impp |
open circuit voltage, short circuit current, MPP voltage and current, respectively, in the conditions of irradiance and temperature provided by |
Vdc, Idc |
voltage and current at the input of the inverter. If no voltage limitation occurs (according to the values of |
Pdc |
power at the input of the inverter, W |
Pac |
power at the output of the inverter, W |
EffI |
efficiency of the inverter |
Oscar Perpiñán Lamigueiro
Jantsch, M., Schmidt, H. y Schmid, J.: Results on the concerted action on power conditioning and control. 11th European photovoltaic Solar Energy Conference, 1992.
Baumgartner, F. P., Schmidt, H., Burger, B., Bründlinger, R., Haeberlin, H. and Zehner, M.: Status and Relevance of the DC Voltage Dependency of the Inverter Efficiency. 22nd European Photovoltaic Solar Energy Conference, 2007.
Alonso Garcia, M. C.: Caracterización y modelado de asociaciones de dispositivos fotovoltaicos. PhD Thesis, CIEMAT, 2005.
Perpiñán, O, Energía Solar Fotovoltaica, 2015. (https://oscarperpinan.github.io/esf/)
Perpiñán, O. (2012), "solaR: Solar Radiation and Photovoltaic Systems with R", Journal of Statistical Software, 50(9), 1-32, doi: 10.18637/jss.v050.i09
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | inclin = data.frame(Gef = c(200,400,600,800,1000),Ta = 25)
#using default values
fProd(inclin)
#Using a matrix for Ki (voltage dependence)
inv1 <- list(Ki = rbind(c(-0.00019917, 7.513e-06, -5.4183e-09),
c(0.00806, -4.161e-06, 2.859e-08),
c(0.02118, 3.4002e-05, -4.8967e-08)))
fProd(inclin, inverter = inv1)
#Voltage limits of the inverter
inclin = data.frame(Gef = 800,Ta = 30)
gen1 = list(Nms = 10, Nmp = 11)
prod = fProd(inclin,generator = gen1)
print(prod)
with(prod, Vdc * Idc / (Vmpp * Impp))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.