Aerodynamics4MC

Quick rating

Aerodynamics4MC

No reviews yet

Realistic wind simulation using actual fluid dynamics — from global weather to per-block turbulence.

Tech
API/Library
Mod Loaders
NeoForge
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Required
Server Unsupported

About

Project Details

Type
Mod
License
MIT License
Latest Version
aerodynamics4mc-0.2-neoforge+1.21.1-SNAPSHOT.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Aerodynamics4MC

Physically Simulated Wind for Minecraft

Real wind doesn't blow in a straight line.
Neither should Minecraft's.

License


✦ Not another wind mod.

Aerodynamics4MC replaces Minecraft's single, world‑wide "wind" value with a four‑layer atmospheric simulation — from planetary weather systems down to per‑block turbulence. Every breeze, gust, and eddy you see is computed on‑the‑fly using actual fluid dynamics, not pre‑recorded animations.


Campfire smoke reacting to wind Wind meter in action


🔬 How It Works

A multi‑scale, server‑authoritative wind field that streams to the client for visual effects — no gimmicks, just physics.

Layer Grid Description
🌍 WorldDriver event‑driven Cyclones, convective clusters, tornado genesis, Rossby waves — large‑scale atmospheric phenomena
🗺️ L0 41×41 (global) Pressure field, geostrophic wind, terrain drag, roughness length
⛰️ L1 33×33×8 (local) Topographic effects, boundary‑layer shear, gap winds, building wakes
💨 L2 (client‑only) 32³ Sub‑grid turbulence via Lattice‑Boltzmann (LBM) + Smagorinsky model. Drives particles (smoke, leaves, flames) with realistic vortex dynamics
  • L0 & L1 → calculated on the server, deterministic for everyone.
  • L2 → purely visual, client‑side, required on demand by other mods. Zero network overhead, no gameplay impact.

🖥️ Server Core + Optional Client Add‑on

This Modrinth page provides the server‑side core of Aerodynamics4MC.
It handles all the physics and wind simulation — everything servers need to run the model.

To interact with the wind in‑game (e.g. measuring devices, visual tools, or gameplay items), check out the official client add‑on:

aerodynamics4mc-addon on Curseforge


❓ Quick Answers

<details> <summary>⚡ Does it lag?</summary>
Server‑side computation (L0+L1) is lighter than most terrain generation mods. The client L2 layer can be turned off or scaled down in the config — you're always in control. </details>

<details> <summary>☁️ Will it conflict with weather mods?</summary>
Generally no. Aerodynamics4MC acts as a wind provider — other mods can read the wind field through the API instead of relying on the static vanilla value. </details>


🧩 For Modders & Developers

Aerodynamics4MC exposes a clean API so your own mods can react to realistic wind.
Source code and integration examples live at the Core Repository.

// Example: query the wind vector at any position
WindField field = AerodynamicsAPI.getWindField(level);
Vector3 wind = field.getWindAt(pos);

📂 Open Source

Found a bug? Have a crazy physics idea?
We welcome contributions and discussions on GitHub.
This project is licensed under the MIT License — build on it freely.


<sub>Wind is the atmosphere’s way of balancing pressure.
Now it balances your Minecraft world, too.
🌍</sub>

Now compatible with Create: Aeronaustics


Airfoil GUI Flight Test UI
Campfire Wind Wind Meter

📦 What to Download

Core – The physics simulation. Required on every server and in single‑player.

Create: Aeronautics Compat – Want true flight physics? Angle of attack, lift/drag curves (Cl/Cd), and real aerodynamics for your aircraft? Then grab aerodynamics4mc-compat-create-aeronautics-*.jar. It’s the compatibility layer that connects the wind simulation to Create: Aeronautics.

Content Add‑on – Anemometers, sailboats, weather maps, wind vanes… download aerodynamics4mc-content-*.jar. This is the official content pack that lets you see and interact with the wind.


🔬 How It Works

A multi‑scale, server‑authoritative wind field that streams to the client for visual effects — no gimmicks, just physics.

Layer Grid Description
🌍 WorldDriver event‑driven Cyclones, convective clusters, tornado genesis, Rossby waves — large‑scale atmospheric phenomena
🗺️ L0 41×41 (global) Pressure field, geostrophic wind, terrain drag, roughness length
⛰️ L1 33×33×8 (local) Topographic effects, boundary‑layer shear, gap winds, building wakes
💨 L2 (client‑only)(disabled by default) 32³ Sub‑grid turbulence via Lattice‑Boltzmann (LBM) + Smagorinsky model. Drives particles (smoke, leaves, flames) with realistic vortex dynamics

L0 & L1 → calculated on the server, deterministic for everyone. L2 → purely visual, client‑side, required on demand by other mods. Zero network overhead, no gameplay impact.


✈️ Real Flight Physics — Create: Aeronautics Compat

The aerodynamics4mc-compat-create-aeronautics-*.jar replaces arcade-style flight with real aerodynamics. Your aircraft now responds to the live wind field, not just button inputs.

Real wing shapes – NACA 0012 (symmetrical, aerobatic), NACA 2412 (cambered, high lift), and flat plates are built in. Each has its own personality.

Angle of Attack (AoA) – The angle between your wing and the actual wind. Too little → no lift. Too much → stall and sudden drop. You must manage it constantly.

Lift & drag from real data – Cl (lift coefficient) and Cd (drag coefficient) are looked up from real NACA curves based on your current AoA and wing type. This determines exactly how hard the wind lifts and pushes your plane.

Stall dynamics – Exceed the critical AoA and lift collapses. The wind won't forgive bad piloting.

In short: the wind isn't decoration anymore. It lifts your wings, drags you back, and punishes steep angles. You fly in the wind, not through it.

Just install the compat jar on both server and client — no extra setup needed.

❓ Quick Answers

⚡ Does it lag?
Server‑side computation (L0+L1) is lighter than most terrain generation mods. The client L2 layer can be turned off or scaled down in the config — you're always in control.
☁️ Will it conflict with weather mods?
Generally no. Aerodynamics4MC acts as a wind provider — other mods can read the wind field through the API instead of relying on the static vanilla value.

🧩 For Modders & Developers

Aerodynamics4MC exposes a clean API so your own mods can react to realistic wind.
Source code and integration examples live at the Core Repository.

// Example: query the wind vector at any position
WindField field = AerodynamicsAPI.getWindField(level);
Vector3 wind = field.getWindAt(pos);

📂 Open Source

We welcome contributions and discussions on GitHub.
This project is licensed under the MIT License — build on it freely.


Wind is the atmosphere’s way of balancing pressure.
Now it balances your Minecraft world, too.
🌍

Screenshots

Gallery

  • banner
    banner

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~2,000
Total Downloads
CurseForge
<1,000
Modrinth
~1,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works