JayisGames.com is now available ad-free!
Jay is Games recommends Cheat Happens with 8,000+ games and 35,000+ trainers!

  • Review

  • Browser Games

Super Planet Crash


  • Currently 4.3/5
  • 1
  • 2
  • 3
  • 4
  • 5
Rating: 4.3/5 (62 votes)
Comments (17) | Views (18,737)

Super Planet Crash

drstrosyUse gravity to crash planets and suns into each other in the name of science? Yes, please! Welcome to Super Planet Crash, a webtoy by science blogger Stefano Meschiari, which serves as a kind of digital orrery (a device which shows the relative size, position and motion of planets in a solar system). In this addicting little app, you have a 2AU area, that is, an area only twice the distance of our Earth from the sun, in which to place planets and/or stellar companions, and attempt to keep them stable for up to 500 years of elapsed time. With small, earth-type bodies, it's a cinch, but add a dwarf star and you up the difficulty. Fortunately, you also increase the points you earn for each year of stability.

Super Planet CrashThe sleek design and ease of use make the app irresistible, especially when you begin to click around on the page. You can choose different solar system templates, such as a compact Kepler-11 theoretical system, four different planet sizes, and two stellar companions. You can speed it up, slow it down, pause and take a picture of your winning combination. The "end screen" even gives you a link to share the system you create on your web site or blog. In addition to the fun stuff, there are also links to space and science sites to help you make sense of the Newtonian physics at work. Be sure you want to leave the page though: they open in the same window. And who knows. The next time we check, we may see your name (and get to watch a prerecorded version of your system) in the the High Scores list.

Play Super Planet Crash

17 Comments

Lol. I thought I found a loophole by spamming 10 ice giants (and was thinking of using heavier things next) in the habitable zone in the exact same orbit. It gave me a very high score.... which turned out to be nothing when I noticed the leaderboard. :p

Reply

Actually, turns out that many people in the leaderboards used the strategy. It seems that I just need a dwarf star and some luck.

Reply
eamurdock April 17, 2014 3:18 PM

cute, but it clearly suffers from numerical instabilities. Multi-body orbital problems are highly non-linear, so the slightest rounding error can cause them to explode unexpectedly...

I ran the high score models and didn't get the results that they did. I suspect that when you accelerate it actually increases the model timestep, and models like this are going to be very sensitive to the timestep size and prone to quantization error.

Which is to say - while there is a strategy for getting high scores, actually achieving one is mostly luck and perseverance.

Reply

I hate the fact that it always starts you with a planet already in play.

Reply
uncopy2002 April 18, 2014 7:26 AM

@eamurdock:

Upon digging in the simulation code it's using Euler method as the integrator (gravitation force is GMm/(r^2) towards direction of the other body, or GMm/(r^3) times distance vector. The code just add the above expression up for all mass pairs). Euler method is the simplest and worst integrator of all of them, having a error size to order (step size)^1, which of course, is very bad when being used in physical simulation.

In physical simulation the standard integrator is the 4th order Runge-Kutta method (called 4th order because error are to order (step size)^4), and it's quite easy to implement. The downside is you have to evaluate the calculation 4 times as usual.

Reply

Hi, uncopy2002 -- a commenter on my website directed me to this comment.

Sorry, I need to correct you here.

I am well aware of the problem associated with rounding errors, in fact I wrote about it here [1] and other places on the web as comments. When games are saved, coordinates are truncated, so for highly chaotic systems (as would be the highest-scoring systems), any approximation is inflated exponentially with time. This is a feature *inherent* to the N-body problem. (A feature I did research about during my undergraduate career, way back when!). There are a few more issues that are hard to solve -- feel free to shoot me an email if you want to keep this conversation going (see below.)

The simulation code is most definitely *not* Euler, which as the comment mentioned is a very numerically unstable, 1st order integration scheme. What is implemented is a leapfrog (Verlet) integrator, which is a symplectic 2nd order scheme. For an interactive N-body simulator (running in Javascript, so limited in performance to what the browser offers), it gives the best bang for the buck by conserving energy of the (perturbed) Hamiltonian [2]. If you could go higher order, you would not not want to use Runge-Kutta 4, which is a generic integrator, but rather a 4-th order symplectic scheme such as the Hermite algorithm.

Increasing the speed does not change the time-step, but rather how many time-steps are taken between frames. You can verify it in the code (UI.evolve).

Finally, I am sure the code is by no means bug-free, so anyone should feel free to report bugs via email: stefano.meschiari AT gmail.com (this of course will be easier once the code is actually on GitHub :))

-StefanoM

[1] http://www.stefanom.org/2000000-systems-played/
[2] Although energy and other conserved quantities are of course not time-symmetric once you start adding bodies ex-nihilo...

Reply
uncopy2002 April 18, 2014 12:17 PM

@smeschia: Thanks for the comment! I learnt something from you today. :D
Sorry for my limited understanding; reading unbeautified code is confusing and prone to errors, and you definitely know better than me about numerical methods.

Reply

Absolutely, no need to apologize! I hope I didn't end up sounding condescending.

I'm trying to get the code open source as soon as I can so that people can wade into its internals and improve it, but since there will be many eyes looking at it, I want to make sure that (a) I choose the right license for it (so that it will not be exploited commercially), and (b) the code is better commented and structured.

Reply

I keep trying to set up an earth-size planet in the L1 point of a dwarf star orbiting the primary star, but I've had no luck. I'm not sure it can be done without control over the initial velocity.

What is the mass of the primary star? I was guessing around 300,000 times earth's mass, a little smaller than the sun. That would mean the planet's orbital radius should be a little less than 1/3 the dwarf star's orbital radius, I think.

Reply
snubcube22 April 19, 2014 6:55 AM

After playing quite a few times (fun!) I was wondering why smaller bodies weren't more commonly trapped by larger ones as moons. I did have an earth-sized body trapped in an orbit around a brown dwarf or dwarf star once or twice but only for 20-30 revolutions before being flung out into the barrier. Is there some reason that an earth-sized body is too big to be a stable moon, even for a dwarf star? (I guess the largest moon in our own solar system, Ganymede, is not as large as Earth...) Or is there some other explanation?

Reply
joshua.f.madden April 21, 2014 1:39 AM

http://www.stefanom.org/spc/?np=2&m1=1&x1=-.6&y1=.6&vx1=-0.0187&vy1=-0.0187&m2=.00003&x2=-0.5&y2=0.5&vx2=0.025&vy2=0.009&speed=10&dt=0.05

Hey guys,

If you are interested in setting up some different systems (and not actually scoring) then you can easily do this by editing the browser code of the three templates systems.

I have no idea about code, and very little understanding of orbital mechanics other than high school physics, but from what I can figure out:

np = number of planets (does not count initial star)
m1, m2... = mass of body 1,2... in relation to initial star
y1, y2... = distance from initial star in the y axis
x1, x2... = distance from initial star in the x axis
vy1, vy2... = velocity from initial star in the y axis
vx1, vx2... = velocity from initial star in the x axis
speed = initial star speed
dt = ???

Also, the coordinate system is based on the initial star, but the screen is centred on the centre of mass. If you place m1=1 at x=.8 y=-.8, then to put the next body directly in the middle of the screen, it's x=.4 y=-.4

Reply
colin.d.howell April 21, 2014 7:32 AM

snubcube22: Capturing of a smaller body as a moon is actually rather difficult in reality, and given how the game works I think it should be impossible in principle, or nearly so. The problem, however, is not how big the bodies are, but how much energy they have.

In reality, for a smaller body approaching a larger one from a distance to get captured, it must lose some of its energy somehow, such as in a collision or by plowing through a gas cloud. Otherwise its total energy (the sum of its kinetic and potential energies) will be too high to it to fall into a steady orbit around the larger body. If its energy was low enough for a stable orbit, it would already have been in such an orbit to start with. Since it was moving freely at the start, it must remain free at the end, merely making a close, high-speed pass and then flying away. Planets in a system stay in orbit around their star because they formed with energies low enough to make escape impossible.

To make matters more difficult, the would-be moon must lose enough energy to give a stable bound orbit, but not too much. Otherwise it will pass so close to the larger body that it will either collide or break up from tidal forces.

In this simulation, there is no way for bodies to lose energy in this fashion. So, if you look at simple two-body interactions (i.e. you ignore the influence of the other more distant bodies), any close pass must be a one-time affair. However, since this is an N-body system, and furthermore is being simulated numerically with finite accuracy, things get more complicated, because it's possible for energy to be transferred among the bodies. I guess that temporarily bound pairs can pop up, since you've seen some. But such a pair is probably very unlikely to remain stable.

Reply
snubcube22 May 2, 2014 2:51 AM

Thanks Colin! That clears things up nicely about the game. Though I'm wondering now about what I've read about irregular satellites like Neptune's moon Triton that are thought to have been captured from the Kupier belt. There are lots of satellites like this... Wikipedia says 113. So is it just that there have been several billion years for flying rocks to get lucky, or would all of those satellites have had to pass through a gas cloud or collide with something to make capture more likely? Or would they have low energy for some other reason?

Reply
isaac95w May 15, 2014 1:16 PM

OMG! I just got the highest score! I tried to copy paste what I did, but it didn't work. Anyway, I had a small planet near the edge, and I put a dwark right next to the sun. Prefect.

Reply
isaac95w May 15, 2014 1:19 PM

To go above, I someone put a brown dwarf like a mercury distance away, put a ton of small planets in habitable zone. 11,315,578

Reply
https://www.google.com/accounts/o8/id?id=AItOawlzxrDzI2sR-dL5Ag8q99OXcp5b4us7A1Y January 12, 2015 7:16 PM

I just beat everyone. I'm new high score. It was luck because I had the small planet in the perfect spot but it only took me about ten minutes or so to get it.

Reply

^ Scroll Up | Homepage >

Leave a comment [top of page]

Please consider creating a Casual Gameplay account if you're a regular visitor here, as it will allow us to create an even better experience for you. Sign-up here!
  • PLEASE UNDERSTAND SITE POLICIES BEFORE POSTING COMMENTS
  • You may use limited HTML tags for style:
    (a href, b, br/, strong, em, ul, ol, li, code, spoiler)
    HTML tags begin with a less-than sign: < and end with a greater-than sign: >. Always. No exceptions.
  • To post spoilers, please use spoiler tags: <spoiler> example </spoiler>
    If you need help understanding spoiler tags, read the spoiler help.
  • Please Preview your comment before posting, especially when using spoilers!
  • No link dropping, no domains as names; do not spam, and do not advertise! (rel="nofollow" in use)
chrpa Jayisgames needs your help to continue providing quality content. Click for details Hi! Weekday Escape and Weekday Puzzle are here! First we have two new cans from tomoLaSiDo and then two small rooms from isotronic. That's all for this...  ...
6,365 Views
0 Comments
chrpa Jayisgames needs your help to continue providing quality content. Click for details Welcome to Mobile Monday! We have another beautiful game from Nicolet and it's a winter game as it should be. Tasuku Yahiro have released another of their...  ...
6,161 Views
2 Comments
chrpa Jayisgames needs your help to continue providing quality content. Click for details We've got a new game from Rinnogogo's magical world and this time it really is magical.. Not only do you get to meet cute animals that express themselves...  ...
chrpa Jayisgames needs your help to continue providing quality content. Click for details After a few weeks of patient waiting, we have been rewarded - the new game from Ichima Coffeedo is here. We got a wonderful new game - it's...  ...

HELP Jayisgames.com

Recent Comments

 

Display 5 more comments
Limit to the last 5 comments

Game of the week


Dark Romance: Vampire Origins Collector's Edition

Your Favorite Games edit

add
Save links to your favorite games here. Use the Favorites editor.

Monthly Archives