From 3ac68cdf16e65bd070c608d8b672dced429dbec6 Mon Sep 17 00:00:00 2001 From: Ting-Hong Shieh <32212900+ting-hong-shieh@users.noreply.github.com> Date: Fri, 14 Aug 2026 10:18:04 +0800 Subject: [PATCH] DOC: correct Flight aerodynamic moment units --- rocketpy/simulation/flight.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rocketpy/simulation/flight.py b/rocketpy/simulation/flight.py index 55ca3486f..f5ff4e718 100644 --- a/rocketpy/simulation/flight.py +++ b/rocketpy/simulation/flight.py @@ -3007,19 +3007,19 @@ def R3(self): @funcify_method("Time (s)", "M1 (Nm)", "linear", "zero") def M1(self): """Aerodynamic moment acting along the x-axis of the rocket's body - frame as a function of time. Expressed in Newtons (N).""" + frame as a function of time. Expressed in Newton-metres (N·m).""" return self.__evaluate_post_process[:, [0, 10]] @funcify_method("Time (s)", "M2 (Nm)", "linear", "zero") def M2(self): """Aerodynamic moment acting along the y-axis of the rocket's body - frame as a function of time. Expressed in Newtons (N).""" + frame as a function of time. Expressed in Newton-metres (N·m).""" return self.__evaluate_post_process[:, [0, 11]] @funcify_method("Time (s)", "M3 (Nm)", "linear", "zero") def M3(self): """Aerodynamic moment acting along the z-axis of the rocket's body - frame as a function of time. Expressed in Newtons (N).""" + frame as a function of time. Expressed in Newton-metres (N·m).""" return self.__evaluate_post_process[:, [0, 12]] @funcify_method("Time (s)", "Net Thrust (N)", "linear", "zero")