Three Neptunes and an asteroid belt

General physics and astronomy discussions not directly related to Celestia
Topic author
ajtribick
Developer
Posts: 1855
Joined: 11.08.2003
With us: 20 years 10 months

Three Neptunes and an asteroid belt

Post #1by ajtribick » 17.05.2006, 18:18

The first planetary system containing three Neptune-mass planets has been discovered around the star HD 69830, around which an asteroid belt has already been detected. They are all on fairly low eccentricity orbits too.

Extrasolar Planets Encyclopaedia
Nature paper
Space.com news article (beware popups)

Dollan
Posts: 1150
Joined: 18.12.2003
Age: 54
With us: 20 years 6 months
Location: Havre, Montana

Post #2by Dollan » 17.05.2006, 18:46

This is an exciting find! I've read that they're postulating that the two inner worlds are similar to Mercury, and by that I'm assuming that they think they are terrestrial worlds. But I don't think planets this massive, Jovian or not, could be without an atmosphere.

Could be wrong, of course.

...John...
"To make an apple pie from scratch, you must first create the universe..."
--Carl Sagan

ElChristou
Developer
Posts: 3776
Joined: 04.02.2005
With us: 19 years 4 months

Post #3by ElChristou » 19.05.2006, 19:05

Some datas are available to create the system for Celestia?
Image

tech2000
Posts: 258
Joined: 14.02.2006
Age: 51
With us: 18 years 4 months
Location: Skepplanda, Sweden

Post #4by tech2000 » 19.05.2006, 23:10

ElChristou wrote:Some datas are available to create the system for Celestia?


Now that would be something extra wouldn't it...
I hope you that that info would be available soon so it could be released in the official Celestia release.

Thanks, Anders

Malenfant
Posts: 1412
Joined: 24.08.2005
With us: 18 years 10 months

Post #5by Malenfant » 19.05.2006, 23:18

The subject line almost sounds like the start of a joke... "three Neptunes and an asteroid belt walk in to a bar...." :lol:

I'm sorry, it's the end of the day on Friday and it's been a long week :). But seriously, this does sound rather interesting!
My Celestia page: Spica system, planetary magnitudes script, updated demo.cel, Quad system

Topic author
ajtribick
Developer
Posts: 1855
Joined: 11.08.2003
With us: 20 years 10 months

Post #6by ajtribick » 19.05.2006, 23:20

Presumably this system is going to end up in extrasolar.ssc eventually.

I don't know if there's any work being done on rendering circumstellar discs/zodiacal light etc. - what with all the known dust discs, asteroid belts etc, it would be good to have such a feature.

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

Post #7by Cham » 20.05.2006, 00:49

Here's a preliminary code for those planets :

Code: Select all

"b" "HD 69830"
{
   Texture "neptune.jpg"
   Albedo 0.75  # guess

   Mass       10.5     # M.sin(i) = 0.033 jupiters
   Radius     25000  # guess
   Oblateness 0.01  # guess

   InfoURL "http://exoplanet.eu/star.php?st=HD+69830"

   EllipticalOrbit {
      Period          0.02373
      SemiMajorAxis   0.0785
      Eccentricity    0.1
   }

   RotationPeriod  10  # guess
}

"c" "HD 69830"
{
   Texture "neptune.jpg"
   Albedo 0.75  # guess

   Mass       12.1     # M.sin(i) = 0.038 jupiters
   Radius     25000  # guess
   Oblateness 0.01  # guess

   InfoURL "http://exoplanet.eu/star.php?st=HD+69830"

   EllipticalOrbit {
      Period          0.08641
      SemiMajorAxis   0.186
      Eccentricity    0.13
   }

   RotationPeriod  10  # guess
}

"d" "HD 69830"
{
   Texture "neptune.jpg"
   Albedo 0.75  # guess

   Mass       18.5     # M.sin(i) = 0.058 jupiters
   Radius     25000  # guess
   Oblateness 0.01  # guess

   InfoURL "http://exoplanet.eu/star.php?st=HD+69830"

   EllipticalOrbit {
      Period          0.5394
      SemiMajorAxis   0.63
      Eccentricity    0.07
   }

   RotationPeriod  10  # guess
}
"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!"

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

Post #8by symaski62 » 20.05.2006, 23:48

Cham wrote:Here's a preliminary code for those planets :

Code: Select all

"b" "HD 69830"
{
   Texture "neptune.jpg"
   Albedo 0.75  # guess

   Mass       10.5     # M.sin(i) = 0.033 jupiters
   Radius     25000  # guess
   Oblateness 0.01  # guess

   InfoURL "http://exoplanet.eu/star.php?st=HD+69830"

   EllipticalOrbit {
      Period          0.02373
      SemiMajorAxis   0.0785
      Eccentricity    0.1
    Epoch 2453496.8
   }

   RotationPeriod  10  # guess
}

"c" "HD 69830"
{
   Texture "neptune.jpg"
   Albedo 0.75  # guess

   Mass       12.1     # M.sin(i) = 0.038 jupiters
   Radius     25000  # guess
   Oblateness 0.01  # guess

   InfoURL "http://exoplanet.eu/star.php?st=HD+69830"

   EllipticalOrbit {
      Period          0.08641
      SemiMajorAxis   0.186
      Eccentricity    0.13
    Epoch 2453469.6
   }

   RotationPeriod  10  # guess
}

"d" "HD 69830"
{
   Texture "neptune.jpg"
   Albedo 0.75  # guess

   Mass       18.5     # M.sin(i) = 0.058 jupiters
   Radius     25000  # guess
   Oblateness 0.01  # guess

   InfoURL "http://exoplanet.eu/star.php?st=HD+69830"

   EllipticalOrbit {
      Period          0.5394
      SemiMajorAxis   0.63
      Eccentricity    0.07
    Epoch 2453358
   }

   RotationPeriod  10  # guess
}


:wink: " Epoch " :)
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.

Topic author
ajtribick
Developer
Posts: 1855
Joined: 11.08.2003
With us: 20 years 10 months

Post #9by ajtribick » 21.05.2006, 09:01

These planets have now been added to extrasolar.ssc (go here).

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

Post #10by symaski62 » 21.05.2006, 23:21

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.

Thalass
Posts: 4
Joined: 16.03.2004
With us: 20 years 3 months

Post #11by Thalass » 22.05.2006, 19:17

Ah! I just saw the New Scientist article on this system, and was going to point it out. You guys work quickly!

chris
Site Admin
Posts: 4211
Joined: 28.01.2002
With us: 22 years 5 months
Location: Seattle, Washington, USA

Post #12by chris » 25.05.2006, 00:13

Grant supplied extrasolar planet updates for HD 69830 as well as transiting planet XO-1b. The parent star of XO-1b is not in Celestia's current star database, so an entry for it was added to extrasolar.stc. You can get the updates from the CVS repository on sourceforge: http://www.sourceforge.net/projects/celestia

Unfortunately, the browse CVS feature seems to be broken right now :(

--Chris

Juan Marino
Posts: 87
Joined: 08.01.2005
With us: 19 years 5 months

Post #13by Juan Marino » 25.05.2006, 23:09

Chris wrote:You can get the updates from the CVS repository on sourceforge: http://www.sourceforge.net/projects/celestia

Unfortunately, the browse CVS feature seems to be broken right now


Mister Chris, i found estrasolar.stc and extrasolar.ssc file here:

http://celestia.cvs.sourceforge.net/celestia/


Regards..

bdm
Posts: 461
Joined: 22.07.2005
With us: 18 years 11 months
Location: Australia

Post #14by bdm » 07.08.2006, 01:16

The Celestia rotation speed for the second planet are likely to be incorrect. It's given as:

Code: Select all

   RotationPeriod  46 # tidal slowing significant

Given its distance to the star (0.186 AU, half that of Mercury) and the age of the star (~ 7 (?± 3) Gyr), I believe the planet will be tidally locked.

Malenfant
Posts: 1412
Joined: 24.08.2005
With us: 18 years 10 months

Post #15by Malenfant » 07.08.2006, 06:05

bdm wrote:The Celestia rotation speed for the second planet are likely to be incorrect. It's given as:

Code: Select all

   RotationPeriod  46 # tidal slowing significant

Given its distance to the star (0.186 AU, half that of Mercury) and the age of the star (~ 7 (?± 3) Gyr), I believe the planet will be tidally locked.


Belief is a dangerous thing ;)

Assuming the same bulk characteristics as Neptune, crunching the numbers for the effects of solar tides indicates that it could be possible that it's not tidally locked - it depends on the initial rotation period of the planet when the system formed (and also assumes it's not moved from its current orbit). Looks like if it started with a rotation period of less than about 12 hours then it should still be rotating independently. A 46 hour rotation period after 7 Ga implies that its original rotation period was about 10.35 hours (assuming a rigidity of 1e9 and moment of inertia of 0.225).
My Celestia page: Spica system, planetary magnitudes script, updated demo.cel, Quad system

granthutchison
Developer
Posts: 1863
Joined: 21.11.2002
With us: 21 years 7 months

Post #16by granthutchison » 07.08.2006, 20:59

The extrasolar.ssc file is pretty well annotated and referenced these days, so the underlying assumptions for the rotation calculations are laid out at the head of the file:

Code: Select all

# Planetary rotation periods have been estimated from the tidal spin-down formulae in 'Solar
# System Dynamics' by CD Murray & SF Dermott, Cambridge University Press 1999, ISBN 0521 57597 4.
# The results are highly approximate - spin-down time is fixed at 4 billion years, and initial
# rotation rate has been set to 10 hours for objects with M.sin(i) > 0.3 jupiters (by analogy
# with Jupiter and Saturn), 17 hours for lower-mass giants (by analogy with Uranus and
# Neptune), and 5 hours for terrestrials (by analogy with the estimated primordial rotation
# period of Earth). The various bulk planetary parameters necessary for the calculation have been
# set equal to those of Jupiter (gas giants) or Mars (terrestrials). Bodies in close orbits are
# generally in captured synchronous rotation, while outer-system bodies retain their primordial
# rotation periods. Objects with intermediate orbits are tidally slowed to various extents.

There are just too many objects for me to hand-calculate spin-down times based on individual stellar age, and it would be pretty futile anyway, given the uncertainties of several other quantities involved. And yet, we've got to have a RotationPeriod for each body, so something has to be done, and this at least produces an appropriate trend based on mass and distance from parent body.
If I had my druthers, such calculations based on very many assumptions would be flagged with scare queries in Celestia's display:
Day Length: 46 hours ???

Figures estimated for consistency with a single other variable might have just a single query:
Radius: 9km ?
for an object the radius of which is deduced from its brightness and an estimate of albedo, for instance.

Grant

Grant Hutchison


Return to “Physics and Astronomy”