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:

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

  1. Constants

A = 14.713 B = -2.396 C = -1.787

  1. Latitude values

latitude = np.linspace(0, 90, 100)

  1. Angular velocity equation

omega = A + B * np.sin(np.deg2rad(latitude))**2 + C * np.sin(np.deg2rad(latitude))**4

  1. Rotational period (in days)

rotational_period = 360 / omega

  1. Plotting

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

I, the copyright holder of this work, hereby publish it under the following license:
w:en:Creative Commons
attribution share alike
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
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.
Category:CC-BY-SA-4.0#Solar%20rotation%20period%20as%20a%20function%20of%20solar%20latitude.png
Category:Self-published work
Category:Solar physics Category:English-language diagrams Category:Created with Matplotlib
  1. Beck, J. (2000). "A comparison of differential rotation measurements". Solar Physics 191: 47–70. DOI:10.1023/A:1005226402796.
  2. (1990). "Rotation of Doppler features in the solar photosphere". Astrophysical Journal 351: 309–316. DOI:10.1086/168467.
Category:CC-BY-SA-4.0 Category:Created with Matplotlib Category:English-language diagrams Category:Self-published work Category:Solar physics