Mission Fuel Mass Calculator Formula
Understand the math behind the mission fuel mass calculator. Each variable explained with a worked example.
Formulas Used
Required Fuel Mass
fuel_mass = dry_mass * (exp(delta_v / exhaust_velocity) - 1)Total Launch Mass
total_mass = dry_mass * exp(delta_v / exhaust_velocity)Fuel Fraction
fuel_fraction = 1 - 1 / exp(delta_v / exhaust_velocity)Variables
| Variable | Description | Default |
|---|---|---|
dry_mass | Dry Mass (payload + structure)(kg) | 5000 |
delta_v | Required Delta-V(m/s) | 3000 |
exhaust_velocity | Exhaust Velocity(m/s) | 3000 |
How It Works
Mission Fuel Mass
From the Tsiolkovsky equation, the fuel needed for a given delta-v depends exponentially on the ratio dv/ve.
Formula
m_fuel = m_dry * (exp(dv / ve) - 1)
This shows why high delta-v missions are so demanding on fuel.
Worked Example
5000 kg dry mass, 3000 m/s delta-v, 3000 m/s exhaust velocity.
dry_mass = 5000delta_v = 3000exhaust_velocity = 3000
- 01m_fuel = m_dry * (exp(dv/ve) - 1)
- 02dv/ve = 3000/3000 = 1
- 03exp(1) = 2.7183
- 04m_fuel = 5000 * (2.7183 - 1) = 5000 * 1.7183
- 05m_fuel = 8591 kg
Ready to run the numbers?
Open Mission Fuel Mass Calculator