Slow but steady progress on the mbh

This commit is contained in:
Connor
2021-09-26 00:01:50 -06:00
parent 49eff02cd0
commit 26ddb43a5d
8 changed files with 420 additions and 191 deletions

View File

@@ -1,29 +1,30 @@
using SPICE
try
furnsh("../../spice_files/naif0012.tls")
furnsh("../../spice_files/de430.bsp")
catch
furnsh("spice_files/naif0012.tls")
furnsh("spice_files/de430.bsp")
end
module Thesis
using LinearAlgebra
using ForwardDiff
using PlotlyJS
using Distributed
using SPICE
try
furnsh("../../spice_files/naif0012.tls")
furnsh("../../spice_files/de430.bsp")
catch
furnsh("spice_files/naif0012.tls")
furnsh("spice_files/de430.bsp")
end
include("./errors.jl")
include("./constants.jl")
include("./spacecraft.jl")
include("./mission.jl")
include("./conversions.jl")
include("./lamberts.jl")
include("./plotting.jl")
include("./inner_loop/laguerre-conway.jl")
include("./inner_loop/propagator.jl")
include("./inner_loop/phase.jl")
# include("./inner_loop/monotonic_basin_hopping.jl")
include("./inner_loop/monotonic_basin_hopping.jl")
# include("./outer_loop.jl")
end