Made the switch to SNOW. Working well

This commit is contained in:
Connor
2021-09-26 01:38:35 -06:00
parent 26ddb43a5d
commit 4061aaaaa3
9 changed files with 260 additions and 33 deletions

View File

@@ -6,7 +6,7 @@ struct Convergence_Error <: Exception end
Base.showerror(io::IO, e::Convergence_Error) = print(io, "NLP solver didn't converge...")
struct GenOrbit_Error <: Exception end
Base.showerror(io::IO, e::GenOrbit_Error) = print(io, "Infinite Loop trying to generate the init orbit")
Base.showerror(io::IO, e::GenOrbit_Error) = print(io, "infinite Loop trying to generate the init orbit")
struct PropOne_Error <: Exception
ΔV_unit::AbstractVector
@@ -16,4 +16,4 @@ Base.showerror(io::IO, e::PropOne_Error) = print(io, "tried to prop a unit ΔV o
struct Mass_Error{T} <: Exception where T <: Real
mass::T
end
Base.showerror(io::IO, e::Mass_Error) = print(io, "Mass (", e.mass, ") got too low in propagation")
Base.showerror(io::IO, e::Mass_Error) = print(io, "mass (", e.mass, ") got too low in propagation")