But IFS and L-systems don't help explain the phenomena (the "how"), just its expression. Fractals are not a building block, physical forces are. Where one or more physical forces are dominant over a range of spatial or…
This seems very related to adaptive meshing algorithms, for which there are many naive formulations, and not all are intractable.
Yes, the simpler versions were discovered earlier. The point that my brain wanted to make was that the article, like so many others in science communications, omits parts of the story that would make present discoveries…
It's a little weird to talk about the origins and our understanding of the Euler and Navier-Stokes equations and not mention that they are both truncations of the Boltzmann equation from gaskinetics.
You just reminded me of a great feature that I think I first noticed in The Gimp: you don't have to search through the list of file types when exporting (I almost typed "saving"!), just type the extension in the file…
It's when I want to close the image or the application - the extra click to confirm that, yes, I am aware this image was not "saved" and that I could be losing data. I admit I have not looked into whether I can disable…
Now that it's not late at night I can see a mistake: the primary benefit of regularization in nbody methods (self-influence being zero and not infinity) is stabilization of the dynamics. A close pass will not send one…
And Gimp users are not more likely to know that? It adds up to extra clicks for 90% of the images I load.
The tweaks that SW included are pretty common to similar simulations: 1) the attraction-repulsion pair is typical of "boids" simulations, and also features in the Lennard-Jones forces acting in atoms (albeit with…
A friend of mine has made some artwork about the AMOC, notably: https://www.benbray.com/apmoc.php Another set of works (a video simulation and a physical installation) show the slow turnover of warm and cold water:…
The nice thing is that every gpu is like a little distributed-memory machine, and programming it for optimal memory locality (registers, shared, global) and bandwidth is an essential skill. One step up is using…
The author is spot on. As an HPC performance engineer and computational artist, I could tell numerous stories about it, but I'll summarize three: The common method for evaluating MPI performance on a supercomputer is…
Please don't call this "full N-body dynamics" if only the outer planets are involved in the integration.
My go-to rule that's held since 2008 has been that a GPU can do about 10x the math that a similarly-priced CPU running properly optimized code can. My 5070Ti can realize about 20 TF/s while a 12-core Zen5 can do 2.
There have been polls. The AI hate thing is almost exclusively a USA thing.
Generative artist here: the beautiful thing about this exploration is that these techniques can be applied to ANY vector field, whether they originate in random noise or global simulations. The reason these add so much…
Yes, I do 4th order interpolation (M4') on the GPU. This paper is for 3rd order, though, but the methods may extend. I suppose because the fetches are generally to similar memory regions, there may not be a substantial…
I should add that this is a major "tell" for detecting when an app uses the Stable Fluids method: obvious mass loss (and very viscous, energy-dissipating flow).
People who run WSL are not normal users. The filesystem problems make Windows+WSL feel like a Trabant when you're used to a Porsche.
Because Windows is the operating system of Not Getting Fired. Fear is a stronger motivator than creativity or productivity.
On the other side, I am a lifelong Linux user, and even with advanced LLMs, trying to get Microsoft Windows to behave sanely takes hours every month for years on end (thanks, day job). Things Linux figured out in 2003…
Before you go adding vorticity confinement, consider performing a higher-order backward advection scheme (Runge-Kutta 2nd or similar), and using a higher-order interpolation method (triangle-shaped cloud instead of…
You are correct: Stable Fluids extends to 3d relatively easily.
One of the nice aspects of Stable Fluids is that you don't need to iterate the pressure correction terms to convergence. Just run a fixed number of Jacobi or Gauss-Seidel sweeps and keep performance consistent. The only…
Then you want Foundations of Multidimensional and Metric Data Structures by Samet. Unless you already have it, then enjoy some pretty (organic) trees.
But IFS and L-systems don't help explain the phenomena (the "how"), just its expression. Fractals are not a building block, physical forces are. Where one or more physical forces are dominant over a range of spatial or…
This seems very related to adaptive meshing algorithms, for which there are many naive formulations, and not all are intractable.
Yes, the simpler versions were discovered earlier. The point that my brain wanted to make was that the article, like so many others in science communications, omits parts of the story that would make present discoveries…
It's a little weird to talk about the origins and our understanding of the Euler and Navier-Stokes equations and not mention that they are both truncations of the Boltzmann equation from gaskinetics.
You just reminded me of a great feature that I think I first noticed in The Gimp: you don't have to search through the list of file types when exporting (I almost typed "saving"!), just type the extension in the file…
It's when I want to close the image or the application - the extra click to confirm that, yes, I am aware this image was not "saved" and that I could be losing data. I admit I have not looked into whether I can disable…
Now that it's not late at night I can see a mistake: the primary benefit of regularization in nbody methods (self-influence being zero and not infinity) is stabilization of the dynamics. A close pass will not send one…
And Gimp users are not more likely to know that? It adds up to extra clicks for 90% of the images I load.
The tweaks that SW included are pretty common to similar simulations: 1) the attraction-repulsion pair is typical of "boids" simulations, and also features in the Lennard-Jones forces acting in atoms (albeit with…
A friend of mine has made some artwork about the AMOC, notably: https://www.benbray.com/apmoc.php Another set of works (a video simulation and a physical installation) show the slow turnover of warm and cold water:…
The nice thing is that every gpu is like a little distributed-memory machine, and programming it for optimal memory locality (registers, shared, global) and bandwidth is an essential skill. One step up is using…
The author is spot on. As an HPC performance engineer and computational artist, I could tell numerous stories about it, but I'll summarize three: The common method for evaluating MPI performance on a supercomputer is…
Please don't call this "full N-body dynamics" if only the outer planets are involved in the integration.
My go-to rule that's held since 2008 has been that a GPU can do about 10x the math that a similarly-priced CPU running properly optimized code can. My 5070Ti can realize about 20 TF/s while a 12-core Zen5 can do 2.
There have been polls. The AI hate thing is almost exclusively a USA thing.
Generative artist here: the beautiful thing about this exploration is that these techniques can be applied to ANY vector field, whether they originate in random noise or global simulations. The reason these add so much…
Yes, I do 4th order interpolation (M4') on the GPU. This paper is for 3rd order, though, but the methods may extend. I suppose because the fetches are generally to similar memory regions, there may not be a substantial…
I should add that this is a major "tell" for detecting when an app uses the Stable Fluids method: obvious mass loss (and very viscous, energy-dissipating flow).
People who run WSL are not normal users. The filesystem problems make Windows+WSL feel like a Trabant when you're used to a Porsche.
Because Windows is the operating system of Not Getting Fired. Fear is a stronger motivator than creativity or productivity.
On the other side, I am a lifelong Linux user, and even with advanced LLMs, trying to get Microsoft Windows to behave sanely takes hours every month for years on end (thanks, day job). Things Linux figured out in 2003…
Before you go adding vorticity confinement, consider performing a higher-order backward advection scheme (Runge-Kutta 2nd or similar), and using a higher-order interpolation method (triangle-shaped cloud instead of…
You are correct: Stable Fluids extends to 3d relatively easily.
One of the nice aspects of Stable Fluids is that you don't need to iterate the pressure correction terms to convergence. Just run a fixed number of Jacobi or Gauss-Seidel sweeps and keep performance consistent. The only…
Then you want Foundations of Multidimensional and Metric Data Structures by Samet. Unless you already have it, then enjoy some pretty (organic) trees.