From c277a9c3712caacfbba6f7928f9bcd9290250b99 Mon Sep 17 00:00:00 2001 From: MatteoGotti <matteo.gotti@skywarder.eu> Date: Tue, 6 Aug 2024 11:39:18 +0200 Subject: [PATCH] [fins-dimensioning][missions] small updates for lyra --- .../config/environmentConfig.m | 2 +- .../2024_Lyra_Portugal_October/config/windConfig.m | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/missions/2024_Lyra_Portugal_October/config/environmentConfig.m b/missions/2024_Lyra_Portugal_October/config/environmentConfig.m index d68ae8e..3340023 100644 --- a/missions/2024_Lyra_Portugal_October/config/environmentConfig.m +++ b/missions/2024_Lyra_Portugal_October/config/environmentConfig.m @@ -8,7 +8,7 @@ environment.lat0 = 39.388727; % [deg] Launchpad latitude environment.lon0 = -8.287842; % [deg] Launchpad longitude environment.z0 = 160; % [m] Launchpad Altitude environment.omega = 85; % [deg] Launchpad elevation -environment.phi = 133; % [deg] Launchpad azimuth +environment.phi = 0; % [deg] Launchpad azimuth environment.pin1Length = 0.5603; % [m] Distance from the upper pin to the upper tank cap environment.pin2Length = 0.2055; % [m] Distance from the lower pin to the lower tank cap environment.rampLength = 12; % [m] Total launchpad length diff --git a/missions/2024_Lyra_Portugal_October/config/windConfig.m b/missions/2024_Lyra_Portugal_October/config/windConfig.m index a6e510c..07f38b2 100644 --- a/missions/2024_Lyra_Portugal_October/config/windConfig.m +++ b/missions/2024_Lyra_Portugal_October/config/windConfig.m @@ -11,11 +11,11 @@ windCustom = WindCustom(); -windCustom.altitudes = [0]; % [m] Altitudes at which a distribution change occurs -windCustom.magnitudeDistribution = ["u"]; % [-] Distribution type: "u" - uniform, "g" - gaussian -windCustom.magnitudeParameters = [0; 9]; % [m/s] Distribution parameters: "u" - [min; max], "g" - [mu; sigma] -windCustom.azimuthDistribution = ["u"]; % [-] Distribution type: "u" - uniform, "g" - gaussian -windCustom.azimuthParameters = [0; 359]*pi/180; % [deg] Distribution parameters: "u" - [min; max], "g" - [mu; sigma] +windCustom.altitudes = [0 4500]; % [m] Altitudes at which a distribution change occurs +windCustom.magnitudeDistribution = ["u", "u"]; % [-] Distribution type: "u" - uniform, "g" - gaussian +windCustom.magnitudeParameters = [0 0; 9 9]; % [m/s] Distribution parameters: "u" - [min; max], "g" - [mu; sigma] +windCustom.azimuthDistribution = ["u", "u"]; % [-] Distribution type: "u" - uniform, "g" - gaussian +windCustom.azimuthParameters = [0 0; 359 359]*pi/180; % [deg] Distribution parameters: "u" - [min; max], "g" - [mu; sigma] %% MATLAB WIND MODEL -- GitLab