Wednesday, October 23, 2019

My remake of Soda Constructor got "Load XML"

Are you old fanboy of Soda Constructor? This is experimental, not fully working and highly risky option but you may now try to load your old Soda Constructor XML models into my JS version. I tried a few and they more or less work. Enjoy!
ps. I've added sound too ;)

 play it here




Brak dostępnego opisu zdjęcia.

Wednesday, April 24, 2019

Diffusion Limited Aggregation



Particles suspended in fluids may diffuse and exhibit random-like motion.
If we stop their motion as they get close to other stopped particles they will create fractal-shaped figures known as Diffusion Limited Aggregates. So the algorithm of the simulation is simply:

1. assign the first "stopped" particle (i. e. in the origin of the system)
2. choose random positions of N particles (the best would be far from the origin)
3. for each particle:
 - randomly choose direction of motion
 - move the particle
 - if any of its neighbours is "stopped" -> stop it.
4. continue the loop 3.

This physical mechanism is simple yet brings beautiful results. Also, it is really simple to code and used i.e. during our classes to teach programming as well as simple modelling. Examples of such figures are below. They are all done with a simple full-screen HTML app I wrote to visualize DLA for purpose of my lectures. Enjoy, it's free.

Soda Constructor (Revisited)