Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - John

Pages: [1]
1
Programs / Re: QB64 program to simulate a comet skip impact on Earth
« on: January 31, 2021, 02:53:54 pm »
Re let it run - and some particles should go into orbit

Yes, some do go into orbit, but very few. Remember that the orbits start at the surface, and they do not have anything to change the path once in flight, so the orbit includes the surface they started on, which means that the vast majority hit the surface on the final part of the first orbit, or sooner. Some tossed way out will miss by a tiny bit and continue in orbit. I did not add atmospheric drag, so they can skim the surface and miss by less than 1 km and still remain in orbit.

Let it run for a few hours - its impressive how far some particles go.

And of course, each particle is a 1 km cube - trying to make them smaller was too much computing.

2
Programs / Re: QB64 program to simulate a comet skip impact on Earth
« on: January 31, 2021, 12:18:13 pm »
Thanks for the compliment.

3
Programs / QB64 program to simulate a comet skip impact on Earth
« on: January 31, 2021, 12:15:27 pm »
This is a program I have used to portray what happens if a large comet hits Earth at a very low angle. I used this program to present my theory that comet Swift-Tuttle has previously hit Earth in a poster at the AGU (American Geophysical Union) conference December, 2020. The program is available here and on my web site: www.craters.ca

I chose QB64 due to the high speed of calculations it is able to do compared to visual basic or MS visual studio. It runs about 800 times faster in QB64 than in Visual Studio. As the program deals with about 200,000 individual particles to show the impact effect, speed is essential. The calculations update the event in 1 second increments. The display runs for about 2 hours of real time for a display of events (or 200,000 X 7500 = 1,500,000,000 calculations per run) to show the effects. The results are displayed in a minute or two, so about 60X faster than real life. Typical geological simulations run about 1/1000 real time instead of 60X faster.  You can let it continue running for as long as you wish - the long term results are interesting also.

Pages: [1]