From c17afb4c8cbefec9afce3121c7fba7246d8cf172 Mon Sep 17 00:00:00 2001
From: Filippo Cataldo <filippo.cataldo@skywarder.eu>
Date: Wed, 17 Jul 2024 12:52:09 +0200
Subject: [PATCH] [ASD] Minor fix

---
 .../postprocessing/ASD/postProcessDrogue.m    | 23 ++++++++++---------
 .../postprocessing/ASD/postProcessMain.m      |  3 ++-
 2 files changed, 14 insertions(+), 12 deletions(-)

diff --git a/RoccarasoFlight/postprocessing/ASD/postProcessDrogue.m b/RoccarasoFlight/postprocessing/ASD/postProcessDrogue.m
index 2f25164..b9792f3 100644
--- a/RoccarasoFlight/postprocessing/ASD/postProcessDrogue.m
+++ b/RoccarasoFlight/postprocessing/ASD/postProcessDrogue.m
@@ -1,13 +1,13 @@
-% postProcessMain - Processes flight data of Gemini's launch at 
-%                   Roccaraso 2023 and gets estimates of DROGUE parachute's
-%                   loads at deployment. Then compares them with simulated
-%                   loads. 
-%                   NAS time is used - with lower sampling frequency.
-%                   No specification of reference frame means 2D inertial
-%                   frame. Body frame can be 2D or 3D depending on the
-%                   context. Anyway, frames are only used to rotate
-%                   vectors: velocities or acceleration are always  with
-%                   respect to an inertial frame.
+% postProcessDrogue - Processes flight data of Gemini's launch at 
+%                     Roccaraso 2023 and gets estimates of DROGUE
+%                     parachute's loads at deployment. Then compares them
+%                     with simulated loads. 
+%                     NAS time is used - with lower sampling frequency.
+%                     No specification of reference frame means 2D inertial
+%                     frame. Body frame can be 2D or 3D depending on the
+%                     context. Anyway, frames are only used to rotate
+%                     vectors: velocities or acceleration are always  with
+%                     respect to an inertial frame.
 %
 % CALLED FUNCTIONS: eqResidual.m, aeroResultant.m, internalLoads.m
 %
@@ -20,7 +20,8 @@ clc
 
 path = genpath(pwd);
 addpath(path);
-% Necessary classes are needed in the path to correctly read Rocket object
+
+% Necessary classes must be in the path to correctly read Rocket object
 load("data\geminiRocketRoccaraso.mat");
 load("data\geminiFlightRoccaraso.mat");
 
diff --git a/RoccarasoFlight/postprocessing/ASD/postProcessMain.m b/RoccarasoFlight/postprocessing/ASD/postProcessMain.m
index ab5c933..7b1c56d 100644
--- a/RoccarasoFlight/postprocessing/ASD/postProcessMain.m
+++ b/RoccarasoFlight/postprocessing/ASD/postProcessMain.m
@@ -20,7 +20,8 @@ clc
 
 path = genpath(pwd);
 addpath(path);
-% Necessary classes are needed in the path to correctly read Rocket object
+
+% Necessary classes must be in the path to correctly read Rocket object
 load("data\geminiRocketRoccaraso.mat");
 load("data\geminiFlightRoccaraso.mat");
 
-- 
GitLab