where is the angular velocity in degrees per day, is the solar latitude, A is angular velocity at the equator, and B, C are constants controlling the decrease in velocity with increasing latitude. The values of A, B, and C differ depending on the techniques used to make the measurement, as well as the time period studied.[1] A current set of accepted average values[2] is:
A= 14.713 ± 0.0491 °/day
B= −2.396 ± 0.188 °/day
C= −1.787 ± 0.253 °/day
Plotted in python
```python
import numpy as np
import matplotlib.pyplot as plt
Constants
A = 14.713
B = -2.396
C = -1.787
Latitude values
latitude = np.linspace(0, 90, 100)
Angular velocity equation
omega = A + B * np.sin(np.deg2rad(latitude))**2 + C * np.sin(np.deg2rad(latitude))**4
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.