@@ -125,9 +125,9 @@ def __init__(
125125 lag = 0 ,
126126 noise = (0 , 0 , 0 ),
127127 radius = None ,
128- drag_coefficient = 1.4 ,
129128 height = None ,
130129 porosity = 0.0432 ,
130+ drag_coefficient = 1.4 ,
131131 ):
132132 """Initializes Parachute class.
133133
@@ -186,17 +186,6 @@ def __init__(
186186 ``cd_s`` and ``drag_coefficient`` using:
187187 ``radius = sqrt(cd_s / (drag_coefficient * pi))``.
188188 Units are in meters.
189- drag_coefficient : float, optional
190- Drag coefficient of the inflated canopy shape, used only when
191- ``radius`` is not provided. It relates the aerodynamic ``cd_s``
192- to the physical canopy area via
193- ``cd_s = drag_coefficient * pi * radius**2``. Typical values:
194-
195- - **1.4** — hemispherical canopy (default, NASA SP-8066)
196- - **0.75** — flat circular canopy
197- - **1.5** — extended-skirt canopy
198-
199- Has no effect when ``radius`` is explicitly provided.
200189 height : float, optional
201190 Length of the unique semi-axis (height) of the inflated hemispheroid
202191 parachute. Default value is the radius of the parachute.
@@ -208,6 +197,17 @@ def __init__(
208197 value of 0.0432 is chosen so that the resulting
209198 ``added_mass_coefficient`` equals approximately 1.0 ("neutral"
210199 added-mass behavior).
200+ drag_coefficient : float, optional
201+ Drag coefficient of the inflated canopy shape, used only when
202+ ``radius`` is not provided. It relates the aerodynamic ``cd_s``
203+ to the physical canopy area via
204+ ``cd_s = drag_coefficient * pi * radius**2``. Typical values:
205+
206+ - **1.4** — hemispherical canopy (default, NASA SP-8066)
207+ - **0.75** — flat circular canopy
208+ - **1.5** — extended-skirt canopy
209+
210+ Has no effect when ``radius`` is explicitly provided.
211211 """
212212 self .name = name
213213 self .cd_s = cd_s
0 commit comments