@@ -56,10 +56,10 @@ def get_solarposition(time, latitude, longitude,
5656 if ``altitude`` is not supplied.
5757
5858 method : string, default 'nrel_numpy'
59- 'nrel_numpy' uses an implementation of the NLR SPA algorithm
59+ 'nrel_numpy' uses an implementation of the NREL SPA algorithm
6060 described in [1] (default, recommended): :py:func:`spa_python`
6161
62- 'nrel_numba' uses an implementation of the NLR SPA algorithm
62+ 'nrel_numba' uses an implementation of the NREL SPA algorithm
6363 described in [1], but also compiles the code first:
6464 :py:func:`spa_python`
6565
@@ -129,8 +129,8 @@ def spa_c(time, latitude, longitude, pressure=101325., altitude=0.,
129129 temperature = 12. , delta_t = 67.0 ,
130130 raw_spa_output = False ):
131131 r"""
132- Calculate the solar position using the C implementation of the NLR
133- SPA code .
132+ Calculate the solar position using the NLR C implementation of the
133+ NREL SPA .
134134
135135 The source files for this code are located in './spa_c_files/', along with
136136 a README file which describes how the C code is wrapped in Python.
@@ -283,9 +283,9 @@ def spa_python(time, latitude, longitude,
283283 atmos_refract = None , how = 'numpy' , numthreads = 4 ):
284284 """
285285 Calculate the solar position using a python implementation of the
286- NLR SPA algorithm.
286+ NREL SPA algorithm.
287287
288- The details of the NLR SPA algorithm are described in [1]_, [2]_.
288+ The details of the NREL SPA algorithm are described in [1]_, [2]_.
289289
290290 If numba is installed, the functions can be compiled to
291291 machine code and the function can be multithreaded.
@@ -394,9 +394,9 @@ def sun_rise_set_transit_spa(times, latitude, longitude, how='numpy',
394394 delta_t = 67.0 , numthreads = 4 ):
395395 """
396396 Calculate the sunrise, sunset, and sun transit times using the
397- NLR SPA algorithm.
397+ NREL SPA algorithm.
398398
399- The details of the NLR SPA algorithm are described in [1]_.
399+ The details of the NREL SPA algorithm are described in [1]_.
400400
401401 If numba is installed, the functions can be compiled to
402402 machine code and the function can be multithreaded.
@@ -956,9 +956,9 @@ def pyephem_earthsun_distance(time):
956956def nrel_earthsun_distance (time , how = 'numpy' , delta_t = 67.0 , numthreads = 4 ):
957957 """
958958 Calculates the distance from the earth to the sun using the
959- NLR SPA algorithm.
959+ NREL SPA algorithm.
960960
961- The details of the NLR SPA algorithm are described in [1]_.
961+ The details of the NREL SPA algorithm are described in [1]_.
962962
963963 Parameters
964964 ----------
0 commit comments