Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix tiny typo in docs #1414

Merged
merged 5 commits into from
Feb 28, 2022
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/sphinx/source/user_guide/modelchain.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A :py:class:`~.modelchain.ModelChain` has three components:

* a :py:class:`~.pvsystem.PVSystem` object, representing a collection of modules and inverters
* a :py:class:`~.location.Location` object, representing a location on the planet
* values for attributes that specify the model to be used for for each step in the PV modeling
* values for attributes that specify the model to be used for each step in the PV modeling
process.

Modeling with a :py:class:`~.ModelChain` typically involves 3 steps:
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/source/user_guide/pvsystem.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ PVSystem and Arrays
The PVSystem class can represent a PV system with a single array of modules,
or with multiple arrays. For a PV system with a single array, the parameters
that describe the array can be provided directly to the PVSystem instand.
For example, the parameters that describe the array's modules are can be
For example, the parameters that describe the array's modules can be
passed to `PVSystem.module_parameters`:

.. ipython:: python
Expand Down
2 changes: 1 addition & 1 deletion pvlib/temperature.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def pvsyst_cell(poa_global, temp_air, wind_speed=1.0, u_c=29.0, u_v=0.0,

wind_speed : numeric, default 1.0
Wind speed in m/s measured at the same height for which the wind loss
factor was determined. The default value 1.0 m/2 is the wind
factor was determined. The default value 1.0 m/s is the wind
speed at module height used to determine NOCT. [m/s]

u_c : float, default 29.0
Expand Down