Still a lot of changes to make

This commit is contained in:
Connor
2021-09-08 11:11:00 -06:00
parent d11ad9bb13
commit e885295bd7
6 changed files with 51 additions and 18 deletions

View File

@@ -2,8 +2,13 @@ module Thesis
using LinearAlgebra, ForwardDiff, PlotlyJS, SPICE
furnsh("../../SPICE/naif0012.tls")
furnsh("../../SPICE/de430.bsp")
try
furnsh("../../SPICE/naif0012.tls")
furnsh("../../SPICE/de430.bsp")
catch
furnsh("SPICE/naif0012.tls")
furnsh("SPICE/de430.bsp")
end
include("./constants.jl")
include("./spacecraft.jl")
@@ -16,4 +21,4 @@ module Thesis
include("./inner_loop/phase.jl")
include("./inner_loop/inner_loop.jl")
end
end