Skip to content
Snippets Groups Projects
Commit 5f813f0b authored by Marco Luigi Gaibotti's avatar Marco Luigi Gaibotti
Browse files

[updates] Removed longitudinal and lateral xcps from prints

parent fcbcce86
No related branches found
No related tags found
1 merge request!21[updates] Removed longitudinal and lateral xcps from prints
Pipeline #11448 failed
Subproject commit 7eab42722e6f7e0576f77383b27bfcd614096e88 Subproject commit 59b6c1b09cbd9b1bc1be07e1aa32f18ced11e1bc
...@@ -66,9 +66,7 @@ maxTemperature = (externalTemp*(1+(((gamma-1)/2)*(mach(iMaxV)^2))))-273.15; ...@@ -66,9 +66,7 @@ maxTemperature = (externalTemp*(1+(((gamma-1)/2)*(mach(iMaxV)^2))))-273.15;
% XCPor = ascent.coeff.XCPor(~isnan(ascent.coeff.XCPor)); % keeping the NaN elements in ascent.coeff.XCPor, but not in XCPor % XCPor = ascent.coeff.XCPor(~isnan(ascent.coeff.XCPor)); % keeping the NaN elements in ascent.coeff.XCPor, but not in XCPor
% end % end
% longitudinal XCPs % XCP
lonXCPs = -ascent.coeff.XCPlon(~isnan(ascent.coeff.XCPlon));
latXCPs = -ascent.coeff.XCPlat(~isnan(ascent.coeff.XCPlat));
totXCPs = ascent.coeff.XCPtot(~isnan(ascent.coeff.XCPtot)); totXCPs = ascent.coeff.XCPtot(~isnan(ascent.coeff.XCPtot));
% DATA RECORD (display) % DATA RECORD (display)
...@@ -101,7 +99,7 @@ fprintf('speed at launch pad exit: %g [m/s] \n', absV(iExit)) ...@@ -101,7 +99,7 @@ fprintf('speed at launch pad exit: %g [m/s] \n', absV(iExit))
% else % else
% fprintf('Stability margin at launchpad exit [-]:\n Lon: %g\n Lat: %g\n Tot: %g\n', lonXCPs(1), latXCPs(1), totXCPs(1)) % fprintf('Stability margin at launchpad exit [-]:\n Lon: %g\n Lat: %g\n Tot: %g\n', lonXCPs(1), latXCPs(1), totXCPs(1))
% end % end
fprintf('Stability margin at launchpad exit [-]:\n Lon: %g\n Lat: %g\n Tot: %g\n', lonXCPs(1), latXCPs(1), totXCPs(1)) fprintf('Stability margin at launchpad exit [-]:\n Lon: %g\n Lat: %g\n Tot: %g\n', totXCPs(1))
fprintf('time: %g [sec] \n\n', time(iExit)) fprintf('time: %g [sec] \n\n', time(iExit))
fprintf('latitude of landing point: %10.8f [deg] \n', lat(end)); fprintf('latitude of landing point: %10.8f [deg] \n', lat(end));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment