@@ -156,7 +156,7 @@ def __repr__(self):
156156 attrs = ['name' , 'surface_tilt' , 'surface_azimuth' , 'module' ,
157157 'inverter' , 'albedo' , 'racking_model' ]
158158 return ('PVSystem: \n ' + '\n ' .join (
159- (attr + ': ' + str ( getattr (self , attr )) for attr in attrs )))
159+ ('{}: {}' . format ( attr , getattr (self , attr )) for attr in attrs )))
160160
161161 def get_aoi (self , solar_zenith , solar_azimuth ):
162162 """Get the angle of incidence on the system.
@@ -593,7 +593,7 @@ def __repr__(self):
593593 'surface_azimuth' , 'module' , 'inverter' , 'albedo' , 'racking_model'
594594 ]
595595 return ('LocalizedPVSystem: \n ' + '\n ' .join (
596- (attr + ': ' + str ( getattr (self , attr )) for attr in attrs )))
596+ ('{}: {}' . format ( attr , getattr (self , attr )) for attr in attrs )))
597597
598598
599599def systemdef (meta , surface_tilt , surface_azimuth , albedo , modules_per_string ,
@@ -2084,8 +2084,8 @@ def adrinverter(v_dc, p_dc, inverter, vtol=0.10):
20842084 See Notes for required keys.
20852085
20862086 vtol : numeric, default 0.1
2087- A unit-less fraction that determines how far the efficiency model is
2088- allowed to extrapolate beyond the inverter's normal input voltage
2087+ A unit-less fraction that determines how far the efficiency model is
2088+ allowed to extrapolate beyond the inverter's normal input voltage
20892089 operating range. 0.0 <= vtol <= 1.0
20902090
20912091 Returns
@@ -2109,21 +2109,21 @@ def adrinverter(v_dc, p_dc, inverter, vtol=0.10):
21092109 Column Description
21102110 ======= ============================================================
21112111 p_nom The nominal power value used to normalize all power values,
2112- typically the DC power needed to produce maximum AC power
2112+ typically the DC power needed to produce maximum AC power
21132113 output, (W).
21142114
2115- v_nom The nominal DC voltage value used to normalize DC voltage
2116- values, typically the level at which the highest efficiency
2115+ v_nom The nominal DC voltage value used to normalize DC voltage
2116+ values, typically the level at which the highest efficiency
21172117 is achieved, (V).
21182118
2119- pac_max The maximum AC output power value, used to clip the output
2119+ pac_max The maximum AC output power value, used to clip the output
21202120 if needed, (W).
21212121
21222122 ce_list This is a list of 9 coefficients that capture the influence
21232123 of input voltage and power on inverter losses, and thereby
21242124 efficiency.
21252125
2126- p_nt ac-power consumed by inverter at night (night tare) to
2126+ p_nt ac-power consumed by inverter at night (night tare) to
21272127 maintain circuitry required to sense PV array voltage, (W).
21282128 ======= ============================================================
21292129
0 commit comments