From 44beadeb880cac53b18aaf5eb8aa92549a3cc2e0 Mon Sep 17 00:00:00 2001 From: MateusStano <69485049+MateusStano@users.noreply.github.com> Date: Wed, 21 Aug 2024 01:15:38 +0200 Subject: [PATCH] BUG: Pressure ISA Extrapolation as "linear" (#675) * BUG: pressure ISA extrapolation from "linear" to "natural" * DEV: adds #675 to changelog --------- Co-authored-by: Gui-FernandesBR <63590233+Gui-FernandesBR@users.noreply.github.com> --- CHANGELOG.md | 1 + rocketpy/environment/environment.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d600e391f..c65a07fc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,7 @@ Attention: The newest changes should be on top --> ### Fixed +- BUG: Pressure ISA Extrapolation as "linear" [#675](https://github.com/RocketPy-Team/RocketPy/pull/675) - BUG: fix the Frequency Response plot of Flight class [#653](https://github.com/RocketPy-Team/RocketPy/pull/653) ## [v1.4.2] - 2024-08-03 diff --git a/rocketpy/environment/environment.py b/rocketpy/environment/environment.py index 3e008c9c9..39ce18532 100644 --- a/rocketpy/environment/environment.py +++ b/rocketpy/environment/environment.py @@ -2382,7 +2382,7 @@ def load_international_standard_atmosphere(self): # pragma: no cover DeprecationWarning, ) - @funcify_method("Height Above Sea Level (m)", "Pressure (Pa)", "spline", "linear") + @funcify_method("Height Above Sea Level (m)", "Pressure (Pa)", "spline", "natural") def pressure_ISA(self): """Pressure, in Pa, as a function of height above sea level as defined by the `International Standard Atmosphere ISO 2533`."""