@@ -25,10 +25,9 @@ the SDE's I-V curve, as described in the following sections.
2525Computing key SDE I-V points
2626----------------------------
2727Three points on the SDE I-V curve are typically of special interest for PV modeling:
28- the maximum power (MP), open circuit (OC) and short circuit (SC) points. However,
29- because the SDE is an implicit transcendental equation, it is not possible
30- to directly calculate these points. Instead, pvlib provides several algorithms
31- for computing these points.
28+ the maximum power (MP), open circuit (OC), and short circuit (SC) points.
29+ Unfortunately, computing them is complicated by the SDE being an implicit transcendental
30+ equation. pvlib provides several algorithms for computing these points.
3231
3332The most accurate and convenient function is :py:func: `pvlib.pvsystem.singlediode `.
3433It provides several methods of computing these points:
@@ -52,11 +51,11 @@ much more quickly using :py:func:`pvlib.singlediode.batzelis_keypoints`.
5251Computing full I-V curves
5352-------------------------
5453
55- Full I-V curves with an arbitrary number of points can be computed using
54+ Full I-V curves can be computed using
5655:py:func: `pvlib.pvsystem.i_from_v ` and :py:func: `pvlib.pvsystem.v_from_i `, which
5756calculate either current or voltage from the other. It is often useful to
58- first compute the key points using :py:func: ` pvlib.pvsystem.singlediode ` to
59- determine the open-circuit or short-circuit values, and then compute a range
57+ first compute the open-circuit or short-circuit values using
58+ :py:func: ` pvlib.pvsystem.singlediode ` and then compute a range
6059of voltages/currents from zero to those extreme points. This range can then
6160be used with the above functions to compute the I-V curve.
6261
0 commit comments