From 12efaf2d0a0058e925bce928879377ebf1be5665 Mon Sep 17 00:00:00 2001 From: William Armstrong Date: Fri, 22 Nov 2024 23:18:19 -0700 Subject: [PATCH 1/3] forecast_reanalysis - move wind_speed to correct position --- rocketpy/environment/environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocketpy/environment/environment.py b/rocketpy/environment/environment.py index 5cef60b21..c7a85c002 100644 --- a/rocketpy/environment/environment.py +++ b/rocketpy/environment/environment.py @@ -1884,9 +1884,9 @@ def process_forecast_reanalysis( temper, wind_u, wind_v, - wind_speed, wind_heading, wind_direction, + wind_speed, ) # Save atmospheric data self.__set_pressure_function(data_array[:, (1, 0)]) From 41d2e6b2bfe5141ed1be15be6c0075d6efd09041 Mon Sep 17 00:00:00 2001 From: William Armstrong Date: Fri, 22 Nov 2024 23:18:19 -0700 Subject: [PATCH 2/3] forecast_reanalysis - move wind_speed to correct position --- rocketpy/environment/environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocketpy/environment/environment.py b/rocketpy/environment/environment.py index 5cef60b21..c7a85c002 100644 --- a/rocketpy/environment/environment.py +++ b/rocketpy/environment/environment.py @@ -1884,9 +1884,9 @@ def process_forecast_reanalysis( temper, wind_u, wind_v, - wind_speed, wind_heading, wind_direction, + wind_speed, ) # Save atmospheric data self.__set_pressure_function(data_array[:, (1, 0)]) From a631bdc8faa70f51df5a9444d275070561a78037 Mon Sep 17 00:00:00 2001 From: Gui-FernandesBR <63590233+Gui-FernandesBR@users.noreply.github.com> Date: Sat, 23 Nov 2024 07:37:51 -0300 Subject: [PATCH 3/3] DEV: adds #735 to CHANGELOG --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bbb7605e..47b37198a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,7 @@ Attention: The newest changes should be on top --> ### Fixed +- BUG: forecast and reanalysis models - move wind_speed to correct position [#735](https://github.com/RocketPy-Team/RocketPy/pull/735) - BUG: Sideslip Angle and Damping Coefficient Calculation [#729](https://github.com/RocketPy-Team/RocketPy/pull/729) ## [v1.6.2] - 2024-11-08