Page 1 of 1

Help to make a (fairy complex) planetary system from scratch

Posted: 31.07.2019, 03:29
by vpontin
Hi!

I want to make a fictional addon, a star system composed by a binary white dwarf (a pair orbiting a common barycenter), and one of the planets should be a quadruple planet (four earth-sized planets orbiting a barycenter) in the habitable zone.

I pretend to add another planets in future, but for now is just it.

Basic schematic of what i want:
lol.png
lol.png (3.93 KiB) Viewed 4911 times


I know how to edit existent star systems (stc and ssc) but i dont know how to start to make this from scratch.

Thanks in advance!

Posted: 31.07.2019, 03:35
by SpaceFanatic64
On the Celestia wikibooks, I believe there are sections for creating barycenters with stars and planets.

Posted: 01.08.2019, 21:38
by ParticleGrasp
If you are using the windows based version, you may want to check in Celestia\extras\data\cc_Stars\cc_MultipleSystems\cc_Castor\cc_Castor.stc

The original add-on was created by Phil Batchelor in 2008. You will find the code for the six star system of Castor (alf Gem).

This really helped me understand barycenters and how to code them in Celestia.

Have fun!

Posted: 01.08.2019, 22:11
by Anthony_B_Russo10
Planet barycenters are easier and look like this:

Code: Select all

ReferencePoint "Barycenter" "Sol"
{
   EllipticalOrbit {   
      Period            1.5000
      SemiMajorAxis     1.2500
      Eccentricity      0.0167
      Inclination       0.0001
      AscendingNode   348.739
      LongOfPericenter 102.947
           MeanLongitude   100.464
   }

    # Make the orbit and label visible
    Visible true
    Clickable true
}