Skip to content

Commit

Permalink
FIX: rocket radius reference in rocket prints
Browse files Browse the repository at this point in the history
  • Loading branch information
giovaniceotto committed Feb 14, 2024
1 parent 09fa805 commit 7da6c58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rocketpy/prints/rocket_prints.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def rocket_aerodynamics_quantities(self):
for surface, position in self.rocket.aerodynamic_surfaces:
name = surface.name
# ref_factor corrects lift for different reference areas
ref_factor = (surface.rocket_radius / self.radius) ** 2
ref_factor = (surface.rocket_radius / self.rocket.radius) ** 2
print(
name
+ " Lift Coefficient Derivative: {:.3f}".format(
Expand Down

0 comments on commit 7da6c58

Please sign in to comment.