33 lines
767 B
Julia
33 lines
767 B
Julia
module Thesis
|
|
|
|
using LinearAlgebra
|
|
using ForwardDiff
|
|
using PlotlyJS
|
|
using Distributed
|
|
using SPICE
|
|
using Dates: DateTime, Millisecond, Dates
|
|
|
|
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("./bodies.jl")
|
|
include("./constants.jl")
|
|
include("./spacecraft.jl")
|
|
include("./inner_loop/laguerre-conway.jl")
|
|
include("./mission.jl")
|
|
include("./inner_loop/propagator.jl")
|
|
include("./conversions.jl")
|
|
include("./plotting.jl")
|
|
include("./inner_loop/nlp_solver.jl")
|
|
include("./inner_loop/monotonic_basin_hopping.jl")
|
|
# include("./outer_loop.jl")
|
|
include("./lamberts.jl")
|
|
|
|
end
|