@@ -139,7 +139,7 @@ def __init__(self,
139
139
140
140
# needed for tying together Location and PVSystem in LocalizedPVSystem
141
141
super (PVSystem , self ).__init__ (** kwargs )
142
-
142
+
143
143
def __repr__ (self ):
144
144
return ('PVSystem with tilt:' + str (self .surface_tilt ) +
145
145
' and azimuth: ' + str (self .surface_azimuth ) +
@@ -443,7 +443,7 @@ def __init__(self, pvsystem=None, location=None, **kwargs):
443
443
444
444
# get and combine attributes from the pvsystem and/or location
445
445
# with the rest of the kwargs
446
-
446
+
447
447
if pvsystem is not None :
448
448
pv_dict = pvsystem .__dict__
449
449
else :
@@ -459,7 +459,7 @@ def __init__(self, pvsystem=None, location=None, **kwargs):
459
459
list (kwargs .items ()))
460
460
461
461
super (LocalizedPVSystem , self ).__init__ (** new_kwargs )
462
-
462
+
463
463
def __repr__ (self ):
464
464
return ('LocalizedPVSystem with tilt:' + str (self .surface_tilt ) +
465
465
' and azimuth: ' + str (self .surface_azimuth ) +
@@ -1323,8 +1323,8 @@ def singlediode(module, photocurrent, saturation_current,
1323
1323
1324
1324
Parameters
1325
1325
----------
1326
- module : DataFrame
1327
- A DataFrame defining the SAPM performance parameters.
1326
+ module : dict or Series
1327
+ A dict-like object defining the SAPM performance parameters.
1328
1328
1329
1329
photocurrent : float or Series
1330
1330
Light-generated current (photocurrent) in amperes under desired
@@ -1625,8 +1625,8 @@ def snlinverter(inverter, v_dc, p_dc):
1625
1625
1626
1626
Parameters
1627
1627
----------
1628
- inverter : DataFrame
1629
- A DataFrame defining the inverter to be used, giving the
1628
+ inverter : dict or Series
1629
+ A dict-like object defining the inverter to be used, giving the
1630
1630
inverter performance parameters according to the Sandia
1631
1631
Grid-Connected Photovoltaic Inverter Model (SAND 2007-5036) [1].
1632
1632
A set of inverter performance parameters are provided with
0 commit comments