File tree Expand file tree Collapse file tree 2 files changed +21
-16
lines changed
docs/sphinx/source/whatsnew Expand file tree Collapse file tree 2 files changed +21
-16
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ Documentation
35
35
(:issue: `1811 `, :pull: `1812 `)
36
36
* Removed Stickler-CI integration as the service has ceased June 2023.
37
37
(:issue: `1722 `, :pull: `1723 `)
38
+ * Fix and update example in :py:func: `pvlib.pvsystem.retrieve_sam `.
39
+ (:issue: `1741 `, :pull: `1833 `)
38
40
39
41
Requirements
40
42
~~~~~~~~~~~~
@@ -45,3 +47,4 @@ Contributors
45
47
* Adam R. Jensen (:ghuser: `AdamRJensen `)
46
48
* Abigail Jones (:ghuser: `ajonesr `)
47
49
* Taos Transue (:ghuser: `reepoi `)
50
+ * NativeSci (:ghuser: `nativesci `)
Original file line number Diff line number Diff line change @@ -2001,23 +2001,25 @@ def retrieve_sam(name=None, path=None):
2001
2001
2002
2002
>>> from pvlib import pvsystem
2003
2003
>>> invdb = pvsystem.retrieve_sam('CECInverter')
2004
- >>> inverter = invdb.AE_Solar_Energy__AE6_0__277V__277V__CEC_2012_
2004
+ >>> inverter = invdb.AE_Solar_Energy__AE6_0__277V_
2005
2005
>>> inverter
2006
- Vac 277.000000
2007
- Paco 6000.000000
2008
- Pdco 6165.670000
2009
- Vdco 361.123000
2010
- Pso 36.792300
2011
- C0 -0.000002
2012
- C1 -0.000047
2013
- C2 -0.001861
2014
- C3 0.000721
2015
- Pnt 0.070000
2016
- Vdcmax 600.000000
2017
- Idcmax 32.000000
2018
- Mppt_low 200.000000
2019
- Mppt_high 500.000000
2020
- Name: AE_Solar_Energy__AE6_0__277V__277V__CEC_2012_, dtype: float64
2006
+ Vac 277
2007
+ Pso 36.197575
2008
+ Paco 6000.0
2009
+ Pdco 6158.746094
2010
+ Vdco 360.0
2011
+ C0 -0.000002
2012
+ C1 -0.000026
2013
+ C2 -0.001253
2014
+ C3 0.00021
2015
+ Pnt 1.8
2016
+ Vdcmax 450.0
2017
+ Idcmax 17.107628
2018
+ Mppt_low 100.0
2019
+ Mppt_high 450.0
2020
+ CEC_Date NaN
2021
+ CEC_Type Utility Interactive
2022
+ Name: AE_Solar_Energy__AE6_0__277V_, dtype: object
2021
2023
'''
2022
2024
2023
2025
if name is not None :
You can’t perform that action at this time.
0 commit comments