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
Binary star systems question.
-
- Developer
- Posts: 1863
- Joined: 21.11.2002
- With us: 22 years
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:
Grant
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