@@ -30,10 +30,12 @@ class PVSystem(object):
30
30
The PVSystem class defines a standard set of PV system attributes and
31
31
modeling functions. This class describes the collection and interactions
32
32
of PV system components rather than an installed system on the ground.
33
- It is typically used in combination with ``Location`` and ``ModelChain``
33
+ It is typically used in combination with
34
+ :py:class:`~pvlib.location.Location` and
35
+ :py:class:`~pvlib.modelchain.ModelChain`
34
36
objects.
35
37
36
- See the :class:`LocalizedPVSystem` class for an object model that
38
+ See the :py: class:`LocalizedPVSystem` class for an object model that
37
39
describes an installed PV system.
38
40
39
41
The class is complementary
@@ -88,9 +90,9 @@ class PVSystem(object):
88
90
89
91
See also
90
92
--------
91
- location.Location
92
- tracking.SingleAxisTracker
93
- pvsystem.LocalizedPVSystem
93
+ :py:class:`~pvlib. location.Location`
94
+ :py:class:`~pvlib. tracking.SingleAxisTracker`
95
+ :py:class:`~pvlib. pvsystem.LocalizedPVSystem`
94
96
"""
95
97
96
98
def __init__ (self ,
@@ -406,7 +408,7 @@ class LocalizedPVSystem(PVSystem, Location):
406
408
This class combines the attributes and methods
407
409
of the PVSystem and Location classes.
408
410
409
- See the :class:`PVSystem` class for an object model that
411
+ See the :py: class:`PVSystem` class for an object model that
410
412
describes an unlocalized PV system.
411
413
"""
412
414
def __init__ (self , pvsystem = None , location = None , ** kwargs ):
0 commit comments