Files
thesis/julia/test/inner_loop/inner_loop.jl
2021-09-08 11:11:00 -06:00

26 lines
519 B
Julia

@testset "Inner Loop" begin
println("Testing Inner Loop")
using Dates
sc = Sc("test")
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), sc, [phase1, phase2], verbose=true, mbh_specs=(5,100))
@test true
end