File:Solar rotation period as a function of solar latitude.png
Summary
| Description |
English: ==Surface rotation as an equation==
The differential rotation rate is usually described by the equation: 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:
Plotted in python ```python import numpy as np import matplotlib.pyplot as plt
A = 14.713 B = -2.396 C = -1.787
latitude = np.linspace(0, 90, 100)
omega = A + B * np.sin(np.deg2rad(latitude))**2 + C * np.sin(np.deg2rad(latitude))**4
rotational_period = 360 / omega
plt.plot(latitude, rotational_period) plt.xlabel('Latitude (degrees)') plt.ylabel('Rotational Period (days)') plt.title('Solar rotation period') plt.grid(True) plt.show() ``` |
| Date | |
| Source | Own work |
| Author | Cosmia Nebula |
Licensing
- You are free:
- 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.
- ↑ Beck, J. (2000). "A comparison of differential rotation measurements". Solar Physics 191: 47–70. DOI:10.1023/A:1005226402796.
- ↑ (1990). "Rotation of Doppler features in the solar photosphere". Astrophysical Journal 351: 309–316. DOI:10.1086/168467.