File:Solar rotation period as a function of solar latitude.png

Solar_rotation_period_as_a_function_of_solar_latitude.png(562 × 455 pixels, file size: 25 KB, MIME type: image/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.
  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.

Captions

Add a one-line explanation of what this file represents

Items portrayed in this file

depicts

13 July 2023

image/png

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current00:56, 14 July 2023Thumbnail for version as of 00:56, 14 July 2023562 × 455 (25 KB)Cosmia NebulaUploaded while editing "Solar rotation" on en.wikipedia.org
The following pages on the English Wikipedia use this file (pages on other projects are not listed):

Metadata