implemented task4 1-4, documentation needs to be written

This commit is contained in:
ti_mo
2026-06-26 19:07:26 +02:00
parent edbc22bcf6
commit fdf21361e9
9 changed files with 2850 additions and 16 deletions
+15 -4
View File
@@ -13,12 +13,17 @@ satConfig.orbitPropagator = "two-body-keplerian";
groundStation.Lat = 52.515744683039436;
groundStation.Lon = 13.325825073341306;
groundStation.Name = "HFT building at Einsteinufer 25";
% below altitude was taken from:
% https://www.randymajors.org/elevation-on-google-maps?x=13.3258251&y=52.5157447&cx=13.3258251&cy=52.5157447&zoom=15&labels=show
groundStation.Altitude = 37;
calc_task1 = true;
calc_task2 = true;
calc_task3 = true;
% configure which task should be calculated
calc_task1 = false;
calc_task2 = false;
calc_task3 = false;
calc_task4 = false;
calc_task4_4 = true;
if calc_task1
task1;
@@ -40,4 +45,10 @@ if calc_task3
end
task3;
end
if calc_task4 || calc_task4_4
only_define_baseline_vars = true;
task2;
only_define_baseline_vars = false;
task4;
end