Skip to content

Commit 920a3cc

Browse files
authored
Merge pull request #287 from RocketPy-Team/enh/new_plots
ENH: Refactor and replace plots and outputs + Compare plots
2 parents 1f0535f + 012feee commit 920a3cc

23 files changed

+4911
-1537
lines changed

docs/notebooks/compare_flights_usage.ipynb

Lines changed: 669 additions & 0 deletions
Large diffs are not rendered by default.

docs/user/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,6 @@ Welcome to RocketPy's user documentation!
1313
../notebooks/environment_analysis_EuroC_example.ipynb
1414
../notebooks/dispersion_analysis/dispersion_analysis.ipynb
1515
../notebooks/utilities_usage.ipynb
16+
../notebooks/compare_flights_usage.ipynb
1617
../matlab/matlab.rst
1718

rocketpy/AeroSurfaces.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,8 @@ class Fins(ABC):
215215
Geometrical relation used to simplify lift and roll calculations
216216
Fins.liftInterferenceFactor : float
217217
Factor of Fin-Body interference in the lift coefficient
218+
Fins.clalpha : float
219+
Lift coefficient slope. Has units of 1/rad.
218220
"""
219221

220222
def __init__(
@@ -372,6 +374,7 @@ def evaluateLiftCoefficient(self):
372374
self.clalphaMultipleFins.setOutputs(
373375
"Lift coefficient derivative for {:.0f} fins".format(self.n)
374376
)
377+
self.clalpha = self.clalphaMultipleFins
375378

376379
# Calculates clalpha * alpha
377380
self.cl = Function(

0 commit comments

Comments
 (0)