Skip to content

Commit d569dc7

Browse files
MNT: clearly specify the rocket mass in utilities
1 parent e477a8e commit d569dc7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

rocketpy/utilities.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ def apogee(mass):
572572
source = np.array(list(zip(x, y)), dtype=np.float64)
573573

574574
retfunc = Function(
575-
source, inputs="Rocket Dry Mass (kg)", outputs="Estimated Apogee AGL (m)"
575+
source, inputs="Rocket Mass without motor (kg)", outputs="Apogee AGL (m)"
576576
)
577577
if plot:
578578
retfunc.plot(min_mass, max_mass, points)
@@ -636,7 +636,7 @@ def liftoff_speed(mass):
636636
source = np.array(list(zip(x, y)), dtype=np.float64)
637637

638638
retfunc = Function(
639-
source, inputs="Rocket Dry Mass (kg)", outputs="Liftoff Speed (m/s)"
639+
source, inputs="Rocket Mass without motor (kg)", outputs="Out of Rail Speed (m/s)"
640640
)
641641
if plot:
642642
retfunc.plot(min_mass, max_mass, points)

0 commit comments

Comments
 (0)