Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions jugend-forscht-2026/calculation of v1 and v2.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import matplotlib.pyplot as plt
import numpy as np

# ========== Constants ==========
# ========== Constants ===========
mu_earth = 3.986e14 # gravitational constant × Earth’s mass
r_earth = 6371e3 # Earth radius (m)

Expand Down Expand Up @@ -58,4 +58,5 @@ def rocket_equation(delta_v, Isp=320, m0=1000):
plt.scatter([320], [fuel], color='red', zorder=5)
plt.text(330, fuel, f'Mein Satellit\n(Isp=320s, Treibstoff={int(fuel)}kg)', color='red')

plt.show()

plt.show()