|
9 | 9 |
|
10 | 10 |
|
11 | 11 | class Parachute: |
12 | | - """Keeps parachute information. |
| 12 | + """Keeps information of the parachute, which is modeled as a hemispheroid. |
13 | 13 |
|
14 | 14 | Attributes |
15 | 15 | ---------- |
@@ -93,12 +93,14 @@ class Parachute: |
93 | 93 | Parachute.clean_pressure_signal_function : Function |
94 | 94 | Function of clean_pressure_signal. |
95 | 95 | Parachute.parachute_radius : float |
96 | | - Radius of the inflated parachute in meters. |
| 96 | + Length of the non-unique semi-axis (radius) of the inflated hemispheroid |
| 97 | + parachute in meters. |
97 | 98 | Parachute.parachute_height : float |
98 | | - Height of the inflated parachute in meters. |
| 99 | + Length of the unique semi-axis (height) of the inflated hemispheroid |
| 100 | + parachute in meters. |
99 | 101 | Parachute.porosity : float |
100 | | - Porosity of the parachute material, which is a measure of how much air can |
101 | | - pass through the parachute material. |
| 102 | + Porosity of the parachute is the ratio of open space in the canopy to total |
| 103 | + canopy area. |
102 | 104 | """ |
103 | 105 |
|
104 | 106 | def __init__( |
@@ -165,15 +167,16 @@ def __init__( |
165 | 167 | passed to the trigger function. Default value is ``(0, 0, 0)``. |
166 | 168 | Units are in Pa. |
167 | 169 | parachute_radius : float, optional |
168 | | - Radius of the inflated parachute. Default value is 1.5. |
| 170 | + Length of the non-unique semi-axis (radius) of the inflated hemispheroid |
| 171 | + parachute. Default value is 1.5. |
169 | 172 | Units are in meters. |
170 | 173 | parachute_height : float, optional |
171 | | - Height of the inflated parachute. Default value is the radius parachute. |
| 174 | + Length of the unique semi-axis (height) of the inflated hemispheroid |
| 175 | + parachute. Default value is the radius of the parachute. |
172 | 176 | Units are in meters. |
173 | 177 | porosity : float, optional |
174 | | - Porosity of the parachute material, which is a measure of how much air can |
175 | | - pass through the parachute material. |
176 | | - Default value is 0.0432 (for consistency with previous versions). |
| 178 | + Porosity of the parachute is the ratio of open space in the canopy to total |
| 179 | + canopy area. Default value is 0.0432 (for consistency with previous versions). |
177 | 180 | """ |
178 | 181 | self.name = name |
179 | 182 | self.cd_s = cd_s |
|
0 commit comments