What's in source/

Source code overview

The source/ folder of this repo is a mirror of the team's HPC MiniWeather Project. Below is what every directory contains and how it maps to the visualization you see on the home page.

The 7-point stencil, four ways

All four implementations compute the same kernel — a 3D 7-point Laplacian-style stencil over a (nx × ny × nz) grid. They differ in how the work is scheduled across hardware:

Other folders

How the in-browser sim maps to this

The interactive page runs a 2D analogue of the same operator. Same stencil shape (centre + face-neighbours), same diffusion math, same buoyancy term — just one dimension fewer so the result fits on a canvas. Resolution, diffusion and buoyancy are sliders so you can feel what the cluster code is computing per cell, per step, before it's distributed across thousands of threads.

← Back to the live simulation