Lots of points in there like
> "Air is an example of a compressible fluid; you squish it and it gets smaller. Water is an example of an incompressible fluid; you squish it and it pushes back, and doesn't get any smaller" (this only really depends on the Mach number, Ma>~0.3 and you are in compressible territory for any fluid. Incompressibility usually means we assume the divergence of velocity of zero)
> "Incompressible fluids are simpler to simulate because their density and pressure is always constant." (This is only true if you choose to adopt a grad P = 0 approximation)
are incorrect from a physics perspective.
If you look at what real incompressible Navier-Stokes solvers do [1], it's mathematically totally different from what this post shows. In fact, the part that this post omits (handle the pressure gradient term by first approximate time stepping the velocity term by ignoring the pressure term and then correct by solving a Poisson equation for the pressure residual, and then correct the velocity) is the most expensive step in incompressible solvers by far.
[1] https://en.wikipedia.org/wiki/Projection_method_(fluid_dynam...
Iiuc water might compress ~50% at the right place in the Earth’s mantle, maybe just not looking much like liquid.
That and boiling water in a paper cup over a bunsen burner (chemistry class) are some of my favorite science demonstrations!
Was literally talking to someone the other day about water being irregular in how it expands at freezing temperatures opposed to contracting.
Water/H2O is such a cool molecule/substance
This is a much better approach to CFD / Navier-Stokes and will help you understand the various phenomenon along the way. https://lorenabarba.com/blog/cfd-python-12-steps-to-navier-s...
> So that means, while I know what it does, I don't really know how, since all the work is in that mysterious function.
that I spent the time to work it out myself. (answer: It arises from discretising the Laplacian -- 6 is the number of direct neighbours in 3D)
In addition, replicating Jameson et al. (AIAA 1981-1259) [1], is a worthwhile, more advanced follow up, great if you want to get into serious CFD development eventually.
[1] http://aero-comlab.stanford.edu/Papers/jameson.aiaa.1981-125...
The earliest jaw-dropping water effect I saw (and somewhat understood at 14) was the awesome credits scene from the Iguana's Earthquake demo[0].
The code[1] contains the following explanation (ancient DOS chars fixed with chatGPT)
; // UpdateTable : performs one integration step on U[CT]
; Differential equation is: u = a²( u + u )
; tt xx yy
;
; Where a² = tension * gravity / surface_density.
;
; Approximating second derivatives by central differences:
;
; [ u(t+1)-2u(t)+u(t-1) ] / Δt² = a² (u(x+1)+u(x-1)+u(y+1)+u(y-1)-4u) / h²
;
; (where Δt = time step, h=Δx=Δy = mesh resolution)
;
; From where u(t+1) may be calculated as:
; ┌ 1 ┐
; u(t+1) = a²Δt²/h² │ 1 0 1 │u - u(t-1) + (2-4a²Δt²/h²)u
; └ 1 ┘
;
; When a²Δt²/h² = ½ last term vanishes, giving:
; ┌ 1 ┐
; u(t+1) = ½ │ 1 0 1 │u - u(t-1)
; └ 1 ┘
;
; This needs only 4 ADD/SUB and one SAR operation per mesh point!
[0] https://www.pouet.net/prod.php?which=364Has there been anything like this published in the past 20 years but for compressible fluids? I have wanted to make a simple atmospheric model for years but have been unable to because of the complexity and probably my lack of complete understanding.
That's less of a different model and more a different way to rewrite the equations to make them easier to analyse or simulate.
We might be talking at slightly different angles here. There's a strong difference in the equations between compressibity of the fluid due to compression and changes in density due to temperature, chemical concentration, etc. The term compressibility usually refers to the first usage, and modelling it leads to sound waves in the system and has major implications for how the system is simulated, I mean it's an entirely different class of algorithms. The second, where density still changes but not due to compression, so no sound waves, that can be easily modelled without including full compressibility. This allows (generally simpler) incompressible models to still incorporate useful thermal physics where important, like in climate and weather. Also, the smaller the scale of the system the more compressibility matters so I wouldn't be surprised if compressibility starts to matter for e.g. Tornados. But I'm not certain on that...