Added some better logging

This commit is contained in:
Connor
2021-10-12 01:36:39 -06:00
parent 7727e436e8
commit c7913d2944
6 changed files with 78 additions and 10 deletions

View File

@@ -22,6 +22,7 @@
# Now we can plot the results to check visually
p = plot(m, title="NLP Test Solution")
savefig(p,"../plots/nlp_test_1_phase.html")
store(m, "missions/nlp_1_phase")
# Now we can look at a slightly more complicated trajectory
flybys = [Earth, Venus, Mars]
@@ -42,6 +43,7 @@
@test typeof(m) == Mission
p = plot(m, title="NLP Test Solution (2 Phases)")
savefig(p,"../plots/nlp_test_2_phase.html")
store(m, "missions/nlp_2_phase")
# Here is the final, most complicated, trajectory to test
flybys = [Earth, Venus, Earth, Mars, Earth, Jupiter]
@@ -67,5 +69,6 @@
@test typeof(m) == Mission
p = plot(m, title="NLP Test Solution (5 Phases)")
savefig(p,"../plots/nlp_test_5_phase.html")
store(m, "missions/nlp_5_phase")
end