Yet another new ring detected around Saturn

General physics and astronomy discussions not directly related to Celestia
Avatar
Topic author
Chuft-Captain
Posts: 1779
Joined: 18.12.2005
With us: 18 years 9 months

Yet another new ring detected around Saturn

Post #1by Chuft-Captain » 07.10.2009, 14:26

"Is a planetary surface the right place for an expanding technological civilization?"
-- Gerard K. O'Neill (1969)

CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS

eburacum45
Posts: 691
Joined: 13.11.2003
With us: 20 years 10 months

Re: Yet another new ring detected around Saturn

Post #2by eburacum45 » 08.10.2009, 10:43

And it is inclined with respect to the equator -something I would have thought was impossible. If I recall correctly that would be quite difficult to do in Celestia.

Avatar
Topic author
Chuft-Captain
Posts: 1779
Joined: 18.12.2005
With us: 18 years 9 months

Re: Yet another new ring detected around Saturn

Post #3by Chuft-Captain » 08.10.2009, 11:43

eburacum45 wrote:And it is inclined with respect to the equator -something I would have thought was impossible. If I recall correctly that would be quite difficult to do in Celestia.
As Celestia's premise seems to be to show things as they would appear to the naked eye, then I guess it's not really an issue for this, as it's only visible in Infra-red wavelengths. :wink:
"Is a planetary surface the right place for an expanding technological civilization?"
-- Gerard K. O'Neill (1969)

CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS

Avatar
Fenerit M
Posts: 1880
Joined: 26.03.2007
Age: 17
With us: 17 years 6 months
Location: Thyrrenian sea

Re: Yet another new ring detected around Saturn

Post #4by Fenerit » 08.10.2009, 14:42

Tonight I tried to figured out this great ring. As start I wrote this code:

Code: Select all

"Great Saturn Ring" "Sol"
{
   Class "diffuse"
   Clickable false
   
   Mesh "great_saturn_ring.cmod"
   Radius 60268
   
   CustomOrbit "vsop87-saturn"
   BodyFrame { EclipticJ2000 {} }

   Rings
   {
      Inner   6000000  # includes some ringlets inside edge of C ring at 74660
      Outer  13000000
      Texture "great_saturn_ring.png"
   }

   Albedo            0.1
 }


in which the mesh is a single vertex point with a virtual Saturn's radius (it rest always a point, unclickable and invisible inside Saturn, but that radius allows the Rings directive).
As you can see there aren't inclinations of some sort. Now, in the forementioned articles is said that the great ring is "on a different plane", "inclined of 27 degrees".
Could someone tell me why with the above SSC I get the great ring just inclined of 27 degrees (red orbit is the great ring)? The mesh point is not oriented, though. Whether I orient it as usual [ 90 1 0 0] the ring is at 90 - Saturn inclination.

Image
Note: one can try, just replace "Mesh" and "Texture"

EDIT LATER:

Ok, even though this is not 27 degree but the 28.052 of UniformRotation > Inclination, how I orient this great ring? :roll:
Never at rest.
Massimo

Avatar
selden
Developer
Posts: 10190
Joined: 04.09.2002
With us: 22 years
Location: NY, USA

Re: Yet another new ring detected around Saturn

Post #5by selden » 08.10.2009, 15:18

Rings are drawn in the equatorial plane of their parent object.

You have to define a fake Saturn which has the correct Inclination defined in its UniformRotation statement.

You have defined your fake Saturn to have an inclination of 0 degrees relative to the Ecliptic plane. The real Saturn has an inclination of 28.052 degrees relative to the Ecliptic plane, so your rings have an inclination of 28.052 degrees relative to Saturn.
Selden

Avatar
Fenerit M
Posts: 1880
Joined: 26.03.2007
Age: 17
With us: 17 years 6 months
Location: Thyrrenian sea

Re: Yet another new ring detected around Saturn

Post #6by Fenerit » 08.10.2009, 15:43

selden wrote:Rings are drawn in the equatorial plane of their parent object.

You have to define a fake Saturn which has the correct Inclination defined in its UniformRotation statement.

You have defined your fake Saturn to have an inclination of 0 degrees relative to the Ecliptic plane. The real Saturn has an inclination of 28.052 degrees relative to the Ecliptic plane, so your rings have an inclination of 28.052 degrees relative to Saturn.

But this inclination is an interaction between CustomOrbit "vsop87-saturn" and BodyFrame { EclipticJ2000 {} } ? Because my "EDIT LATER" is achieved by reasoning, nor because I've put the UniformRotation statement in my SSC. So just need to add:
UniformRotation
{
Period #10.65622222 # System III (magnetic field)
Inclination -1.052 # 27 - 28.052
AscendingNode 169.528
MeridianAngle 358.93 # correct System III prime meridian
}

where Period, AscendingNode and MeriadianAngle are guess? Anyhow, thanks Selden for reply.
Never at rest.
Massimo

Avatar
selden
Developer
Posts: 10190
Joined: 04.09.2002
With us: 22 years
Location: NY, USA

Re: Yet another new ring detected around Saturn

Post #7by selden » 08.10.2009, 16:10

The OrbitFrame statement tells Celestia what coordinate system to use when determining the object's location in space. The default OrbitFrame is "Ecliptic J2000" for planets and "Equatorial J2000" of the parent body for moons.

The BodyFrame statement tells Celestia what coordinate system to use when determining the object's orientation in space. The default BodyFrame also is "Ecliptic J2000" for planets and "Equatorial J2000" of the parent body for moons.

There is no interaction between OrbitFrame and BodyFrame.

If the defaults are OK, then you don't have to specify either OrbitFrame or BodyFrame, but I find it easiest to understand what is happening by specifying OrbitFrame {...} followed by a position statement like FixedPosition or EllipticalOrbit, then BodyFrame {...} followed by an orientation statement like FixedRotation or SampledOrientation.
Selden

Avatar
Fenerit M
Posts: 1880
Joined: 26.03.2007
Age: 17
With us: 17 years 6 months
Location: Thyrrenian sea

Re: Yet another new ring detected around Saturn

Post #8by Fenerit » 08.10.2009, 16:36

For example this code:

"Great Saturn Ring" "Sol"
{
Class "diffuse"
Clickable false

Mesh "great_saturn_ring.cmod"
Radius 60268

OrbitFrame { BodyFixed { Center "Sol/Saturn" } }
BodyFrame { BodyFixed { Center "Sol/Saturn" } }

CustomOrbit "vsop87-saturn"

Rings
{
Inner 6000000 # includes some ringlets inside edge of C ring at 74660
Outer 13000000
Texture "great_saturn_ring.png"
}

Albedo 0.1
}


doesn't work. The rings doesn't appears. And they doesn't appears also when CustomOrbit is removed. Is a rings related problem?
Never at rest.
Massimo

Avatar
selden
Developer
Posts: 10190
Joined: 04.09.2002
With us: 22 years
Location: NY, USA

Re: Yet another new ring detected around Saturn

Post #9by selden » 08.10.2009, 17:11

It works for me when I eliminate the OrbitFrame.
The OrbitFrame above causes the fake planet to orbit around Saturn.
It needs to orbit around the Sun.
Selden

Avatar
Fenerit M
Posts: 1880
Joined: 26.03.2007
Age: 17
With us: 17 years 6 months
Location: Thyrrenian sea

Re: Yet another new ring detected around Saturn

Post #10by Fenerit » 08.10.2009, 17:51

Ah! indeed, thanks.
Now, set apart the the Celestia's issues, this ring seem very distant from both Phoebe and Iapetus...
Never at rest.
Massimo

Avatar
selden
Developer
Posts: 10190
Joined: 04.09.2002
With us: 22 years
Location: NY, USA

Re: Yet another new ring detected around Saturn

Post #11by selden » 08.10.2009, 18:20

Fenerit wrote:Ah! indeed, thanks.
Now, set apart the the Celestia's issues, this ring seem very distant from both Phoebe and Iapetus...

The orbit of Phoebe is within the ring. Remember that this "ring" is not flat. It's more like a torus.

See the diagram at http://www.nasa.gov/mission_pages/spitz ... 1007b.html

It shows the orbit of Iapetus to be much closer to Saturn.
Selden

ajtribick
Developer
Posts: 1855
Joined: 11.08.2003
With us: 21 years 1 month

Re: Yet another new ring detected around Saturn

Post #12by ajtribick » 08.10.2009, 20:16

A candidate for Cham's particle modelling technique perhaps?

symaski62
Posts: 609
Joined: 01.05.2004
Age: 41
With us: 20 years 4 months
Location: france, divion

Re: Yet another new ring detected around Saturn

Post #13by symaski62 » 09.10.2009, 00:53

^^
windows 10 directX 12 version
celestia 1.7.0 64 bits
with a general handicap of 80% and it makes much d' efforts for the community and s' expimer, thank you d' to be understanding.

Avatar
Fenerit M
Posts: 1880
Joined: 26.03.2007
Age: 17
With us: 17 years 6 months
Location: Thyrrenian sea

Re: Yet another new ring detected around Saturn

Post #14by Fenerit » 09.10.2009, 10:00

ajtribick wrote:A candidate for Cham's particle modelling technique perhaps?

This would be easy, the problem is that without the point sprites, points only became more visibles with distance. There would be another SSC directive like: InvisibleAt <value in Km>...
Never at rest.
Massimo

Avatar
Cham M
Posts: 4324
Joined: 14.01.2004
Age: 60
With us: 20 years 8 months
Location: Montreal

Re: Yet another new ring detected around Saturn

Post #15by Cham » 09.10.2009, 18:35

I would suggest to associate a model to Saturn itself ("Small particles ring" "Sol/Saturn"), defined as Class "diffuse", with emissivity turned ON and clickable set to false. Also, this ring should be made invisible by default, and a celx script should be used as a visibility "switch".

I may built a new CMOD model for this ring, but I'm not sure it's really worth it yet.

Someone knows the true shape of this ring ? I need the internal radius (in km), external radius and thickness (in km).
"Well! I've often seen a cat without a grin", thought Alice; "but a grin without a cat! It's the most curious thing I ever saw in all my life!"

Avatar
Topic author
Chuft-Captain
Posts: 1779
Joined: 18.12.2005
With us: 18 years 9 months

Re: Yet another new ring detected around Saturn

Post #16by Chuft-Captain » 09.10.2009, 20:04

I think at least some of the dimensions were given in one of the links in my first post of the thread, (but probably not enough to allow modeling). ... I suggest you wait awhile until full details are published.

Do you realize that this ring is completely invisible to the naked eye?
"Is a planetary surface the right place for an expanding technological civilization?"
-- Gerard K. O'Neill (1969)

CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS

Avatar
Fenerit M
Posts: 1880
Joined: 26.03.2007
Age: 17
With us: 17 years 6 months
Location: Thyrrenian sea

Re: Yet another new ring detected around Saturn

Post #17by Fenerit » 10.10.2009, 13:16

Forementioned articles given 20 times the Saturn diameter as thickness of the torus. 13 x 10^6 the outer radius and as inner radius TV broadcast have said 6 x 10^6 (this latter source do take with springs).

CC, what about of a Celestia's version with the views in ALL wavelenghts? :wink:
Never at rest.
Massimo

Avatar
selden
Developer
Posts: 10190
Joined: 04.09.2002
With us: 22 years
Location: NY, USA

Re: Yet another new ring detected around Saturn

Post #18by selden » 15.10.2009, 13:40

A detailed description of the large ring is in The Planetary Society's Blog at http://www.planetary.org/blog/article/00002165/
Selden

Avatar
Topic author
Chuft-Captain
Posts: 1779
Joined: 18.12.2005
With us: 18 years 9 months

Re: Yet another new ring detected around Saturn

Post #19by Chuft-Captain » 15.10.2009, 15:24

A couple of observations from reading that article...

1. The article quotes Saturn's radius as being 60,330 kilometers. In Celestia, it's 60,268 km.

2. The Moon S/2008 S1 (now named Aegaeon) and the associated G ring is not included in Celestia.

CC
Last edited by Chuft-Captain on 15.10.2009, 21:33, edited 1 time in total.
"Is a planetary surface the right place for an expanding technological civilization?"
-- Gerard K. O'Neill (1969)

CATALOG SYNTAX HIGHLIGHTING TOOLS LAGRANGE POINTS

Avatar
selden
Developer
Posts: 10190
Joined: 04.09.2002
With us: 22 years
Location: NY, USA

Re: Yet another new ring detected around Saturn

Post #20by selden » 15.10.2009, 18:54

A Web search has turned up several different values for the size of Saturn, but no mention of who did any of the measurements.

The orbit of Aegaeon is not well known. It's included in a supplemental Addon.
http://www.lepp.cornell.edu/~seb/celest ... moons.html
Selden


Return to “Physics and Astronomy”