From 472a0962947b54d5788b61ea8d7f2f44ad5eaaa2 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 21 Jun 2022 16:17:35 -0600 Subject: [PATCH 1/2] add reference --- docs/sphinx/source/whatsnew/v0.9.2.rst | 1 + pvlib/inverter.py | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/sphinx/source/whatsnew/v0.9.2.rst b/docs/sphinx/source/whatsnew/v0.9.2.rst index 893cc65639..135d025e8d 100644 --- a/docs/sphinx/source/whatsnew/v0.9.2.rst +++ b/docs/sphinx/source/whatsnew/v0.9.2.rst @@ -27,6 +27,7 @@ Testing Documentation ~~~~~~~~~~~~~ +* Added a reference to :py:func:`pvlib.inverter.sandia_multi`. (:pull:`1479`) Benchmarking ~~~~~~~~~~~~~ diff --git a/pvlib/inverter.py b/pvlib/inverter.py index a192f5e1c2..f5719306c3 100644 --- a/pvlib/inverter.py +++ b/pvlib/inverter.py @@ -142,7 +142,8 @@ def sandia_multi(v_dc, p_dc, inverter): Convert DC power and voltage to AC power for an inverter with multiple MPPT inputs. - Uses Sandia's Grid-Connected PV Inverter model [1]_. + Uses Sandia's Grid-Connected PV Inverter model [1]_. Extension of [1]_ + to inverters with multiple, unbalanced inputs as described in [2]_. Parameters ---------- @@ -177,6 +178,9 @@ def sandia_multi(v_dc, p_dc, inverter): .. [1] D. King, S. Gonzalez, G. Galbraith, W. Boyson, "Performance Model for Grid-Connected Photovoltaic Inverters", SAND2007-5036, Sandia National Laboratories. + .. [2] C. Hansen, J. Johnson, R. Darbali- N. Gurule. "Modeling Efficiency + Of Inverters With Multiple Inputs", 46th IEEE Photovoltaic Specialist + Conference, Philadelphia, PA, USA. June 2022. See also -------- From 5431b523b83249214039ccca5750536389de55d0 Mon Sep 17 00:00:00 2001 From: Cliff Hansen Date: Tue, 21 Jun 2022 18:27:07 -0600 Subject: [PATCH 2/2] corrections --- pvlib/inverter.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pvlib/inverter.py b/pvlib/inverter.py index f5719306c3..cfac1682c7 100644 --- a/pvlib/inverter.py +++ b/pvlib/inverter.py @@ -178,9 +178,9 @@ def sandia_multi(v_dc, p_dc, inverter): .. [1] D. King, S. Gonzalez, G. Galbraith, W. Boyson, "Performance Model for Grid-Connected Photovoltaic Inverters", SAND2007-5036, Sandia National Laboratories. - .. [2] C. Hansen, J. Johnson, R. Darbali- N. Gurule. "Modeling Efficiency - Of Inverters With Multiple Inputs", 46th IEEE Photovoltaic Specialist - Conference, Philadelphia, PA, USA. June 2022. + .. [2] C. Hansen, J. Johnson, R. Darbali-Zamora, N. Gurule. "Modeling + Efficiency Of Inverters With Multiple Inputs", 49th IEEE Photovoltaic + Specialist Conference, Philadelphia, PA, USA. June 2022. See also --------