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

@@ -4,6 +4,8 @@
using Dates
sc = Sc("test")
phase1 = Phase("Earth",
"Mars",
3600*24*365*1.5,
@@ -15,8 +17,9 @@
3600*24*365*3.5,
[2., 3.7416573867739413, 0.],
[0.3, 1., 0.])
inner_loop(DateTime(2024,3,5), [phase1, phase2])
inner_loop(DateTime(2024,3,5), sc, [phase1, phase2], verbose=true, mbh_specs=(5,100))
@test true
end
end

View File

@@ -4,8 +4,13 @@ using LinearAlgebra
using SPICE
using Thesis
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
# Tests
@testset "All Tests" begin