diff --git a/missions/2024_Lyra_Portugal_October/config/environmentConfig.m b/missions/2024_Lyra_Portugal_October/config/environmentConfig.m index d68ae8ea9a9f7f4b5cd1c002e3b0135c668008b0..3340023439aa5691acc062ec9d4d3fbf2328df6f 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 a6e510c108347b99b74b24301529d99585d3750c..07f38b2b123a014037634ba2d44c4b8bc6e86542 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