Skip to content

Commit 1b00643

Browse files
authored
Add tests for parity and Legendre polynomials (#8)
* add tests * Add propagate_inbounds
1 parent 562febe commit 1b00643

File tree

3 files changed

+61
-3
lines changed

3 files changed

+61
-3
lines changed

Project.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "SphericalHarmonics"
22
uuid = "c489a379-e885-57ff-9236-bd896d33c250"
3-
version = "0.1.9"
3+
version = "0.1.10"
44

55
[deps]
66
ElasticArrays = "fdbdab4c-e67f-52f5-8c3f-e7b388dad3d4"
@@ -10,14 +10,16 @@ SphericalHarmonicModes = "0e9554e2-b38b-11e9-16d7-9d9abfec665a"
1010

1111
[compat]
1212
ElasticArrays = "1.2"
13+
LegendrePolynomials = "0.3"
1314
SphericalHarmonicArrays = "0.4.4"
1415
SphericalHarmonicModes = "0.4.7"
1516
julia = "1"
1617

1718
[extras]
1819
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
1920
HCubature = "19dc6840-f33b-545b-b366-655c7e3ffd49"
21+
LegendrePolynomials = "3db4a2ba-fc88-11e8-3e01-49c72059a882"
2022
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2123

2224
[targets]
23-
test = ["Aqua", "HCubature", "Test"]
25+
test = ["Aqua", "HCubature", "LegendrePolynomials", "Test"]

src/SphericalHarmonics.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Base.parent(P::AssociatedLegendrePolynomials) = P.P
4040
Base.size(P::AssociatedLegendrePolynomials) = size(parent(P))
4141
Base.axes(P::AssociatedLegendrePolynomials) = axes(parent(P))
4242
Base.IndexStyle(::Type{<:AssociatedLegendrePolynomials{<:Any, PLM}}) where {PLM} = IndexStyle(PLM)
43-
Base.getindex(P::AssociatedLegendrePolynomials, I...) = getindex(parent(P), I...)
43+
Base.@propagate_inbounds Base.getindex(P::AssociatedLegendrePolynomials, I...) = getindex(parent(P), I...)
4444
function Base.summary(io::IO, P::AssociatedLegendrePolynomials)
4545
print(io, "$(length(P))-element AssociatedLegendrePolynomials{$(eltype(P))} for lmax = $(Int(P.lmax))")
4646
if P.initialized

test/runtests.jl

+56
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ using SphericalHarmonicModes
33
using Test
44
using HCubature
55
using Aqua
6+
using LegendrePolynomials
67

78
import SphericalHarmonics: NorthPole, SouthPole, allocate_y, allocate_p, RealHarmonics, ComplexHarmonics
89

@@ -888,3 +889,58 @@ end
888889
s_exp = "10-element AssociatedLegendrePolynomials{BigFloat} for lmax = 3 (uninitialized)"
889890
end
890891
end
892+
893+
@testset "Parity" begin
894+
lmax = 10
895+
S1 = SphericalHarmonics.cache(lmax)
896+
S2 = SphericalHarmonics.cache(lmax)
897+
for θ in LinRange(0, pi, 10)
898+
P1 = computePlmcostheta!(S1, θ)
899+
P2 = computePlmcostheta!(S2, pi - θ)
900+
for l in 0:lmax, m in 0:l
901+
@test isapprox(P2[(l,m)], (-1)^(l + m) * P1[(l,m)], atol = 1e-13, rtol = 1e-13)
902+
end
903+
for ϕ in LinRange(0, 2pi, 10)
904+
Y1 = computeYlm!(S1, θ, ϕ)
905+
Y2 = computeYlm!(S2, pi - θ, pi + ϕ)
906+
for l in 0:lmax, m in -l:l
907+
@test isapprox(Y2[(l,m)], (-1)^l * Y1[(l,m)], atol = 1e-13, rtol = 1e-13)
908+
end
909+
end
910+
end
911+
end
912+
913+
@testset "m = 0 Legendre" begin
914+
# for m = 0, the spherical harmonics are normalized Legendre Polynomials and are purely real
915+
lmax = 100
916+
@testset "ComplexHarmonics" begin
917+
S = SphericalHarmonics.cache(lmax)
918+
LP = zeros(0:lmax)
919+
for θ in LinRange(0, pi, 10)
920+
LegendrePolynomials.collectPl!(LP, cos(θ), lmax = lmax)
921+
computePlmcostheta!(S, θ)
922+
for ϕ in LinRange(0, 2pi, 10)
923+
computeYlm!(S, θ, ϕ)
924+
for l in 0:lmax
925+
@test isapprox(imag(S.Y[(l,0)]), 0, atol = 1e-13)
926+
@test isapprox(S.Y[(l,0)], ((2l+1)/4pi) * LP[l], atol = 1e-13, rtol = 1e-13)
927+
end
928+
end
929+
end
930+
end
931+
@testset "RealHarmonics" begin
932+
S = SphericalHarmonics.cache(lmax, SHType = RealHarmonics())
933+
LP = zeros(0:lmax)
934+
for θ in LinRange(0, pi, 10)
935+
LegendrePolynomials.collectPl!(LP, cos(θ), lmax = lmax)
936+
computePlmcostheta!(S, θ)
937+
for ϕ in LinRange(0, 2pi, 10)
938+
computeYlm!(S, θ, ϕ)
939+
for l in 0:lmax
940+
@test isapprox(imag(S.Y[(l,0)]), 0, atol = 1e-13)
941+
@test isapprox(S.Y[(l,0)], ((2l+1)/4pi) * LP[l], atol = 1e-13, rtol = 1e-13)
942+
end
943+
end
944+
end
945+
end
946+
end

0 commit comments

Comments
 (0)