Switching to my linux box

This commit is contained in:
Connor
2021-09-04 17:31:20 -06:00
parent 7532a2ef6c
commit d11ad9bb13
11 changed files with 256 additions and 30 deletions

View File

@@ -4,9 +4,18 @@
using Dates
phase1 = Phase("Earth", "Mars", 3600*24*365*1.5, 5., 2.)
phase2 = Phase("Mars", "Jupiter", 3600*24*365*3.5, 2., 0.1)
inner_loop(DateTime(2024,3,5), 0.3, 0.4, [phase1, phase2])
phase1 = Phase("Earth",
"Mars",
3600*24*365*1.5,
[1., 0.3, 0.],
[3., 3., 0.])
phase2 = Phase("Mars",
"Jupiter",
3600*24*365*3.5,
[2., 3.7416573867739413, 0.],
[0.3, 1., 0.])
inner_loop(DateTime(2024,3,5), [phase1, phase2])
@test true

View File

@@ -1,17 +1,20 @@
using Test
using Random
using LinearAlgebra
using SPICE
using Thesis
furnsh("../../SPICE/naif0012.tls")
furnsh("../../SPICE/de430.bsp")
# Tests
@testset "All Tests" begin
include("spacecraft.jl")
include("plotting.jl")
include("inner_loop/laguerre-conway.jl")
include("inner_loop/propagator.jl")
include("inner_loop/find_closest.jl")
include("inner_loop/monotonic_basin_hopping.jl")
# include("spacecraft.jl")
# include("plotting.jl")
# include("inner_loop/laguerre-conway.jl")
# include("inner_loop/propagator.jl")
# include("inner_loop/find_closest.jl")
# include("inner_loop/monotonic_basin_hopping.jl")
include("inner_loop/inner_loop.jl")
end