Skip to content

Commit 7defc38

Browse files
committed
DOC: added new parameters to the documentation
1 parent 78ef92e commit 7defc38

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,9 @@ main = calisto.add_parachute(
261261
sampling_rate=105,
262262
lag=1.5,
263263
noise=(0, 8.3, 0.5),
264+
parachute_radius=1.5,
265+
parachute_height=1.5,
266+
porosity=0.0432,
264267
)
265268

266269
drogue = calisto.add_parachute(
@@ -270,6 +273,9 @@ drogue = calisto.add_parachute(
270273
sampling_rate=105,
271274
lag=1.5,
272275
noise=(0, 8.3, 0.5),
276+
parachute_radius=1.5,
277+
parachute_height=1.5,
278+
porosity=0.0432,
273279
)
274280
```
275281

docs/user/first_simulation.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,9 @@ Finally, we can add any number of Parachutes to the ``Rocket`` object.
276276
sampling_rate=105,
277277
lag=1.5,
278278
noise=(0, 8.3, 0.5),
279+
parachute_radius=1.5,
280+
parachute_height=1.5,
281+
porosity=0.0432,
279282
)
280283

281284
drogue = calisto.add_parachute(
@@ -285,6 +288,9 @@ Finally, we can add any number of Parachutes to the ``Rocket`` object.
285288
sampling_rate=105,
286289
lag=1.5,
287290
noise=(0, 8.3, 0.5),
291+
parachute_radius=1.5,
292+
parachute_height=1.5,
293+
porosity=0.0432,
288294
)
289295

290296
We can then see if the rocket is stable by plotting the static margin:

docs/user/rocket/rocket_usage.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,9 @@ apogee and another that will be deployed at 800 meters above ground level:
302302
sampling_rate=105,
303303
lag=1.5,
304304
noise=(0, 8.3, 0.5),
305+
parachute_radius=1.5,
306+
parachute_height=1.5,
307+
porosity=0.0432,
305308
)
306309

307310
drogue = calisto.add_parachute(
@@ -311,6 +314,9 @@ apogee and another that will be deployed at 800 meters above ground level:
311314
sampling_rate=105,
312315
lag=1.5,
313316
noise=(0, 8.3, 0.5),
317+
parachute_radius=1.5,
318+
parachute_height=1.5,
319+
porosity=0.0432,
314320
)
315321

316322
.. seealso::

0 commit comments

Comments
 (0)