Skip to content

Commit

Permalink
MNT: isort
Browse files Browse the repository at this point in the history
  • Loading branch information
MateusStano committed Sep 16, 2024
1 parent f7f2a95 commit 04c01f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rocketpy/rocket/aero_surface/linear_generic_surface.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from rocketpy.mathutils import Function
from rocketpy.rocket.aero_surface.generic_surface import GenericSurface
from rocketpy.prints.aero_surface_prints import _LinearGenericSurfacePrints
from rocketpy.plots.aero_surface_plots import _LinearGenericSurfacePlots
from rocketpy.prints.aero_surface_prints import _LinearGenericSurfacePrints
from rocketpy.rocket.aero_surface.generic_surface import GenericSurface


class LinearGenericSurface(GenericSurface):
Expand Down Expand Up @@ -355,7 +355,7 @@ def _compute_from_coefficients(
(pitch, yaw, roll) in the body frame.
"""
# Precompute common values
dyn_pressure_area = 0.5 * rho * stream_speed ** 2 * self.reference_area
dyn_pressure_area = 0.5 * rho * stream_speed**2 * self.reference_area
dyn_pressure_area_damping = (
dyn_pressure_area * self.reference_length / (2 * stream_speed)
)
Expand Down

0 comments on commit 04c01f9

Please sign in to comment.