-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plot distance projected to the ecliptic plane instead of radial distance (optionally) #3
Comments
Maybe rather plot the distance projected to the heliographic equatorial plane (instead of ecliptic plane)? 🤔 |
In the following example, Ulysses coordinates are: >>> sm.body_dict['Ulysses'][3]
<SkyCoord (HeliographicStonyhurst: obstime=2021-10-20T00:00:00.000, rsun=695700.0 km):
(lon, lat, radius) in (deg, deg, AU)
(124.84379058, 25.40222722, 4.42381195)> To obtain the projected distance in the heliographic equatorial plane, the >>> sm.body_dict['Ulysses'][3].cylindrical
<CylindricalRepresentation (rho, phi, z) in (AU, deg, AU)
(3.9961117, 124.84379058, 1.89768371)> Here, |
Note that for calculating the Parker spiral, the distance projected to the heliographic equatorial plane is used together with the solar rotation according to the actual heliographic latitude! Thus, we get the latitude-dependent Parker spiral (blue and red curve in the following plot) projected to the heliographic equatorial plane (black curve): |
Update: With 5196c78, all calculations are carried out in spherical coordinates. Only for the two-dimensional visualization, the coordinates are projected to the heliographic equatorial plane. In the course of this last commit, the |
So, by default the plot will be made in the 'heliographic-equator' mode? |
Yes! Before it was actually a mix of two coordinate systems, so it doesn't make sense to continue that. Of course, one could think of providing another (optional) coordinate system... |
At the moment, Solar-MACH shows the configuration plot only with respect to longitude and radius. For high latitude orbits (e.g., Solar Orbiter), it might be worthwhile to (optionally) plot the distance projected to the ecliptic plane instead of the radial distance (in spherical coordinates). So in the following picture (where x, y span the ecliptic), using r instead of ρ:
(Figure source. Note that this picture plots the colatitude ф, and not the latitude, which would be 90-ф)
Thanks to @AthKouloumvakos for the idea
The text was updated successfully, but these errors were encountered: