Comparing orbits between a planet and Red Dwarf

Hello, I have a problem, so I have an earth like planet orbiting around a sun like star and then there is a red dwarf on an elliptical orbit around the star that passes close to the planet. I want to show that sometimes when the Red Dwarf is at it's closest approach the planet may not be there so it won't gain any heat from the red dwarf. To do this I was told to compare the orbital periods of the two. So for the planet it's orbital period is just like the earth 365 days and the red dwarf's period is 1896.59 days.
I was thinking is there a way I could plot the orbits of these two and run it for say like 100 years and see the if there is points when the earth could miss the red dwarf? If this is wrong please let me know a better way of tackling this problem.

7 Comments

You should dig into diff equations
You can use ode45 to solve them. Do you have any parameters like mass, distance?
Yeah I have the mass of red dwarf equal to 1.2e+30 kg and the distance from the planet to the red dwarf changes from 3.75 AU to 0.25 AU.
I have never used ode45 in matlab before what would be the best way to use it for my problem?
Thanks for your help
Can you give us more detail about the problem? Is this a 3D task where the orbits are inclined to each other, or is this a 2D problem where everything is in one plane? I.e., what are the relative orientations? Are you directed to use numerical simulation for this? Are you directed to use conic section solution for this (i.e., solving Kepler's equation etc.)? Are you directed just to look at orbit periods to see how often they get close? Is the BBC involved? What is the actual wording of the assignment?
This is the figure I have of the problem, with the black line being the Red Dwarf's orbit and the blue being the planet's orbit. It is a 2D problem and I want to compare the orbit periods of the Red Dwarf and planet and see if there is instances where the planet would "miss" the Red Dwarf as it is at it's closest approach (-1.25 AU on the x-axis for the red dwarf) so it would be on the other side of its orbit at 1 AU, meaning the main star would be blocking the red dwarf and the planet would not gain any additional flux from the red dwarf.
My problem is all about the change of a planets temperature when a red dwarf is added on an elliptical orbit, so I want to see when this increase of temperature would happen, would it be consistent ever time the red dwarf is at the closest approach that the planet would be there or would there be times when it wouldn't be there.
I hope that explains my problem a bit better.
In general, over time you will get every possible relative geometry, including brief periods of stellar eclipse. The near term results will depend on initial conditions. Also, if the orbits are resonant or nearly resonant then you could get semi-regular patterns of warming instead of the warming being somewhat random. What do you want as a result of this study? Plots of warming based on initial condition? Statistics of warming distribution over time? How often a stellar eclipse occurs? Or ...?
I have already plotted the planets temp over the red dwarfs orbit, now I am interested in the orbits of the two so yeah how often stellar eclipses occur would be exactly what I need.
I would ask if this is intended to be a classical three body problem, where gravitation is influencing each of the other planets. I'll assume not, since that is seen to result in chaotic behavior, at least over the long term. Chaotic here means the three body problem is unstable, where a tiny perturbation or uncertainty in the orbits will amplify over time, eventually making the orbits unpredictable over a very long term.
That implies you are assuming that each object lives in a purely elliptical orbit, and what you care about are the timings of those orbits. In that case, what matters are the orbital periods. As well, in this case, what will be important is group theory, and the greatest common divisor of the two orbital periods. In the end, it comes down to simple number theoretic questions.
You have two periodic objects, one with a period of 365 days, and the second with a period of 1896.59 days. Let me assume that each of them is exactly known. In fact, I'll break each day up into hundreths of a day. So now the orbiral periods are 36500 hundreths, and 189659 hundreths. The important question is now (the only MATLAB content in my comment):
gcd(189659,36500)
ans =
1
the greatest common divisor is 1. That is, that pair of orbital periods is relatively prime, since the GCD is 1. What, in turn, does that tell me? It tells me that if the two orbiting objects do not influence each other gravitationally, so their orbits do not lengthen or shorten, or change relative to each other, then EVERY possible configuration between the two orbiting objects will be observed, and over the long term, EVERY possible configuration will happen equally often.
Again, to within 0.01 days, given the system you seem to be describing, EVERY possible configuration of the two objects will be observed, and it will be observed equally often - OVER THE LONG TERM.
And all of this is a simple claim that will come from group theory, concepts from number theory, etc. One of the things I love about mathematics is how an understanding of various branches of mathematics will sometimes offer insight into a variety of processes, of physical systems. Even the most pure mathematics can sometimes offer insights too.
In fact of course, what does tend to happen is orbital periods do change. And the Solar system is an n-body problem, not even just a 3 body problem. Planets do influence each other. Looking at the solar system, for example, one can find orbital resonances, so one planet's orbital period becomes related to others in the same system. And for more number theoretic content yet, we might read about planetary orbital periods and the Fibonacci numbers, for example:
I'm sure a little digging will find lots of intriging stuff.
Mathematics can be a fascinating subject, and having a breadth of mathematical knowledge is sometimes as useful/interesting as it is to have a deep understanding of a single area of mathematics.

Sign in to comment.

 Accepted Answer

To calculate how often stellar eclipses occur for the 2D geometry, on average, yes all you need to do is look at orbit periods.
The "inner" planet moves faster than the "outer" Red Dwarf, so you just need to calculate the average time it takes for the planet to complete one revolution and then some to catch up with the Red Dwarf. Since we are just after average results here, consider the problem as two circular orbits with the same periods:
perp = period planet (days)
perd = period red dwarf (days)
np = 2*pi / perp; % mean motion of planet (rad/day)
nd = 2*pi / perd; % mean motion of red dwarf (rad/day)
Then you simply need to solve for the time T that it takes for the next alignment. So you have two equations:
np * T = 2*pi + a
nd * T = a
Solving for T yields
T = 2*pi / (np - nd); % (days)
This is the average time between stellar eclipses.

2 Comments

This is great! Thank you so much, do you mind if I ask where you got that image from? In case I need to use it in my report.
Thank you so much again!
I put it together myself with powerpoint. Use it all you want. No citation needed.

Sign in to comment.

More Answers (0)

Categories

Find more on Earth and Planetary Science in Help Center and File Exchange

Products

Release

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!