Binary star systems question.

Post requests, images, descriptions and reports about work in progress here.
Topic author
LAX2489
Posts: 12
Joined: 27.08.2003
With us: 21 years 2 months

Binary star systems question.

Post #1by LAX2489 » 05.11.2003, 00:46

Would it be possible to make a binary or even trinary(if it even exists) star system with planets and such? If so, how could you make it that the suns orbit around each other instead of around a single point?
Thanks for any feed back. The goal i have have in mind would be a planetary system similar to the one in the movie "Pitch Black". Thanks again

Tom

granthutchison
Developer
Posts: 1863
Joined: 21.11.2002
With us: 22 years

Post #2by granthutchison » 05.11.2003, 01:04

At present the best you can do is define the secondary stars as if they were planets, but with a star texture applied and "Emissive true" set. As an example, here's a definition for stars B, C and D in the Alula Australis quadruple system:

Code: Select all

"Alula Australis B" "Alula Australis"   # fully specified orientation
{
   Texture "gstar.jpg"   # G0V
   Radius 760000      #

   Emissive true

   EllipticalOrbit {
      Period          59.878
      SemiMajorAxis   21.2
      Eccentricity    0.398
      Inclination   14.1
      AscendingNode   192.1
      ArgOfPericenter 188.7
      MeanAnomaly     29.6
   }

   RotationPeriod   260 # plausible guess
}

"Alula Australis C" "Alula Australis"   # fully specified orientation
{
   Texture "mstar.jpg"   # ~M3V from calc mass 0.4
   Radius 300000      #

   Emissive true

   Color   [ 1 0.7 0.7 ]

   EllipticalOrbit {
      Period          1.832
      SemiMajorAxis   0.48
      Eccentricity    0.53
      Inclination   137.0
      AscendingNode   298.1
      ArgOfPericenter 7.9
      MeanAnomaly     133.8
   }

   RotationPeriod   250 # plausible guess
}

"Alula Australis D" "Alula Australis/Alula Australis B"
{
   Texture "browndwarf.jpg"
   Radius 70000

   Emissive true

   Color   [ 1 0.7 0.7 ]

   EllipticalOrbit {
      Period          3.98
      SemiMajorAxis   9000000
      Eccentricity    0
   }

   RotationPeriod   5 # plausible guess
}

Grant

Topic author
LAX2489
Posts: 12
Joined: 27.08.2003
With us: 21 years 2 months

Post #3by LAX2489 » 05.11.2003, 01:54

is there a template on how to write the information, like the information above, for a planet system, im new at this and i dont really know how to do it. Any help would be greatly appreciated. Thanks


Tom

marc
Posts: 426
Joined: 13.03.2002
With us: 22 years 8 months
Location: Outback Australia

Post #4by marc » 05.11.2003, 08:40

Have a look at solarsys.ssc which is in celestia's data directory. It defines our solarsystem in that same format.


Return to “Add-on development”