Skip to content

Commit

Permalink
Deprecate taylorinteg_threads (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
LuEdRaMo authored Jul 13, 2023
1 parent bb49d32 commit f6e7436
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 6,030 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "PlanetaryEphemeris"
uuid = "d83715d0-7e5f-11e9-1a59-4137b20d8363"
authors = ["Jorge A. Pérez Hernández", "Luis Benet", "Luis Eduardo Ramírez Montoya"]
version = "0.7.2"
version = "0.7.3"

[deps]
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
Expand Down
3 changes: 1 addition & 2 deletions src/PlanetaryEphemeris.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module PlanetaryEphemeris

# __precompile__(false)

export PE, au, yr, sundofs, earthdofs, c_au_per_day, μ, NBP_pN_A_J23E_J23M_J2S!, NBP_pN_A_J23E_J23M_J2S_threads!, DE430!,
export PE, au, yr, sundofs, earthdofs, c_au_per_day, μ, NBP_pN_A_J23E_J23M_J2S_threads!, DE430!,
semimajoraxis, eccentricity, inclination, longascnode, argperi, longperi, trueanomaly, ecanomaly, meananomaly,
timeperipass, lrlvec, eccentricanomaly, meanan2truean, meanmotion, time2truean, su, ea, mo, au, yr, daysec, clightkms,
c_au_per_day, c_au_per_sec, c_cm_per_sec, J2000, R_sun, α_p_sun, δ_p_sun, au, UJ_interaction, de430_343ast_ids, Rx, Ry,
Expand All @@ -29,7 +29,6 @@ include("initial_conditions.jl")
include("dynamical_model.jl")
include("jetcoeffs.jl")
include("interpolation.jl")
include("plephinteg.jl")
include("propagation.jl")
include("osculating.jl")
include("barycenter.jl")
Expand Down
921 changes: 5 additions & 916 deletions src/dynamical_model.jl

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions src/interpolation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,15 @@ function TaylorInterpolant(t0::T, t::SubArray{T, 1}, x::SubArray{Taylor1{U}, N})
end

# Custom print
function show(io::IO, interp::TaylorInterpolant{T, U, 2}) where {T, U}
function show(io::IO, interp::TaylorInterpolant{T, U, N}) where {T, U, N}
t_range = minmax(interp.t0 + interp.t[1], interp.t0 + interp.t[end])
N = size(interp.x, 2)
S = eltype(interp.x)
print(io, "t: ", t_range, ", x: ", N, " ", S, " variables")
if isone(N)
print(io, "t: ", t_range, ", x: 1 ", S, " variable")
else
L = size(interp.x, 2)
print(io, "t: ", t_range, ", x: ", L, " ", S, " variables")
end
end

@doc raw"""
Expand Down
4,773 changes: 0 additions & 4,773 deletions src/jetcoeffs.jl

Large diffs are not rendered by default.

303 changes: 0 additions & 303 deletions src/plephinteg.jl

This file was deleted.

Loading

2 comments on commit f6e7436

@PerezHz
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/87436

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.7.3 -m "<description of version>" f6e74361f909b5921f79c621fe0e6dd2aca96fc2
git push origin v0.7.3

Please sign in to comment.