Added voltage for a known string function.
This commit is contained in:
parent
32f1212b8d
commit
7a186e839c
1 changed files with 9 additions and 1 deletions
|
|
@ -47,4 +47,12 @@ def panels_per_string(Vmax,Voc,beta=-0.5,temp = 25,STCtemp = 25):
|
||||||
|
|
||||||
panels_per_string_max = Vmax // Vocadj
|
panels_per_string_max = Vmax // Vocadj
|
||||||
|
|
||||||
return int(panels_per_string_max)
|
return int(panels_per_string_max)
|
||||||
|
|
||||||
|
def voltage_per_string(panels,Voc,beta=-0.5,temp = 25,STCtemp = 25):
|
||||||
|
|
||||||
|
vocadj = temp_adj_Voc(Voc, temp,beta, STCtemp = 25)
|
||||||
|
|
||||||
|
voltage = vocadj * panels
|
||||||
|
|
||||||
|
return round(voltage,4)
|
||||||
Loading…
Add table
Reference in a new issue