diff --git a/classes/components/Environment.m b/classes/components/Environment.m index 3923b1d3885cc968e053091c3527638a14262da1..25e3d7725b16ad9f53ef7b71371bed27c3f7df63 100644 --- a/classes/components/Environment.m +++ b/classes/components/Environment.m @@ -15,6 +15,8 @@ classdef Environment < Component lat0 double % [deg] Launchpad latitude lon0 double % [deg] Launchpad longitude z0 double % [m] Launchpad Altitude + omega double % [deg] Launchpad Elevation + phi double % [deg] Launchpad Azimuth pin1Length double % [m] Distance from the upper pin to the upper tank cap pin2Length double % [m] Distance from the lower pin to the lower tank cap rampLength double % [m] Total launchpad length diff --git a/classes/components/WindCustom.m b/classes/components/WindCustom.m index d2e12bc0c186bc1fc4b783ebf68d6b28b8eeb3a5..af8f0f86ca96467b782264dbdb3cc0b370bbb9d3 100644 --- a/classes/components/WindCustom.m +++ b/classes/components/WindCustom.m @@ -56,9 +56,7 @@ classdef WindCustom < Component ww = 0; end end - end - methods(Access = private) function obj = setData(obj) s = length(obj.altitudes); magVector = nan(1,s); diff --git a/missions/2024_Lyra_Roccaraso_September/config/environmentConfig.m b/missions/2024_Lyra_Roccaraso_September/config/environmentConfig.m index d994fbcadd6bd499bea3bca185d6915a8197b2b6..e90dd15d4f168f495ff0bc37cec20201c18feab0 100644 --- a/missions/2024_Lyra_Roccaraso_September/config/environmentConfig.m +++ b/missions/2024_Lyra_Roccaraso_September/config/environmentConfig.m @@ -7,6 +7,8 @@ environment = Environment(); environment.lat0 = 41.8084579; % [deg] Launchpad latitude environment.lon0 = 14.0546408; % [deg] Launchpad longitude environment.z0 = 1414; % [m] Launchpad Altitude +environment.omega = 85; % [deg] Launchpad Elevation +environment.phi = 0; % [deg] Launchpad Azimuth environment.pin1Length = 000; % [m] Distance from the upper pin to the upper tank cap environment.pin2Length = 000; % [m] Distance from the lower pin to the lower tank cap environment.rampLength = 000; % [m] Total launchpad length