I'm wondering if someone can check this for me... previously I've made multiple star systems with circular orbits, this is the first one I've made with eccentric ones.
What I've got here is a trinary M V system, consisting of an M0 V with a close binary orbiting it:
The M0V (0.416 solar masses) and the binary barycentre (combined mass 0.486 solar masses) orbit the trinary barycentre, the separation between the two (semimajor axis) is 34.153 AU and the eccentricity of the orbit is 0.282.
The M3 V (0.278 solar masses) and M5V (0.208 solar masses) in the binary orbit the binary barycentre with a semimajor axis of 0.110 AU and an eccentricity of 0.778. (hrm, one issue with this might be that such a close binary is more likely to have a much more circular orbit, especially given that the system is 6.5Ga old...)
But anyway, does the code below make sense? Can anyone spot any major flaws with the code itself? I guess I'm wondering if I should be using the same eccentricities for each object orbiting a given barycentre. Is it even possible to have two stars orbiting a barycentre with different eccentricities?
I'm using this very useful paper to figure out the orbits, BTW:
http://arxiv.org/abs/astro-ph/9809315
(paste the code as a new .stc file)
Code: Select all
Barycenter "TrinaryABC"
{
RA 45
Dec -45
Distance 100
}
Barycenter "TrinaryAB"
{
OrbitBarycenter "TrinaryABC"
EllipticalOrbit {
Period 210.16
SemiMajorAxis 34.153
Eccentricity 0.282
ArgOfPericenter 0
}
}
"StarS"
{
OrbitBarycenter "TrinaryABC"
SpectralType "M0V"
AbsMag 8.78 # Luminosity = 0.026 Sol
Radius 375983
EllipticalOrbit {
Period 210.16
SemiMajorAxis 34.153
Eccentricity 0.282
ArgOfPericenter 180
}
}
#-------------
"StarN1"
{
OrbitBarycenter "TrinaryAB"
SpectralType "M5V"
AbsMag 13.08 # Luminosity = 0.0005 Sol
Radius 157296
EllipticalOrbit {
Period 0.052
SemiMajorAxis 0.110
Eccentricity 0.778
ArgOfPericenter 0
}
}
"StarN2"
{
OrbitBarycenter "TrinaryAB"
SpectralType "M3V"
AbsMag 10.60 # Luminosity = 0.0049 Sol
Radius 199056
EllipticalOrbit {
Period 0.052
SemiMajorAxis 0.110
Eccentricity 0.778
ArgOfPericenter 180
}
}