Skip to content

Commit

Permalink
fix xmax for Fourier operators (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
ranocha committed Mar 11, 2024
1 parent 360c87f commit 65aa3cd
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
@@ -1,7 +1,7 @@
name = "SummationByPartsOperators"
uuid = "9f78cca6-572e-554e-b819-917d2f1cf240"
author = ["Hendrik Ranocha"]
version = "0.5.55"
version = "0.5.56"

[deps]
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"
Expand Down
13 changes: 11 additions & 2 deletions src/fourier_operators.jl
Expand Up @@ -11,8 +11,8 @@ See also [`fourier_derivative_operator`](@ref).
@auto_hash_equals struct FourierDerivativeOperator{T<:Real, Grid, RFFT, BRFFT} <: AbstractPeriodicDerivativeOperator{T}
jac::T
Δx::T
grid_compute::Grid # N-1 nodes, including the left and excluding the right boundary
grid_evaluate::Grid # N nodes, including both boundaries
grid_compute::Grid # N nodes, including the left and excluding the right boundary
grid_evaluate::Grid # N+1 nodes, including both boundaries
tmp::Vector{Complex{T}}
rfft_plan::RFFT
brfft_plan::BRFFT
Expand Down Expand Up @@ -84,6 +84,9 @@ function Base.show(io::IO, D::FourierDerivativeOperator)
end
end

xmin(D::FourierDerivativeOperator) = first(D.grid_evaluate)
xmax(D::FourierDerivativeOperator) = last(D.grid_evaluate)


function mul!(dest::AbstractVector{T}, D::FourierDerivativeOperator, u::AbstractVector{T}) where {T}
@unpack jac, tmp, rfft_plan, brfft_plan = D
Expand Down Expand Up @@ -212,6 +215,9 @@ function Base.show(io::IO, poly::FourierPolynomialDerivativeOperator)
end
end

xmin(poly::FourierPolynomialDerivativeOperator) = xmin(poly.D1)
xmax(poly::FourierPolynomialDerivativeOperator) = xmax(poly.D1)


function Base.:*(D1::FourierDerivativeOperator, D2::FourierDerivativeOperator)
T = eltype(D1)
Expand Down Expand Up @@ -431,6 +437,9 @@ end
Base.size(rat::FourierRationalDerivativeOperator) = size(rat.D1)
grid(rat::FourierRationalDerivativeOperator) = grid(rat.D1)

xmin(rat::FourierRationalDerivativeOperator) = xmin(rat.D1)
xmax(rat::FourierRationalDerivativeOperator) = xmax(rat.D1)

function Base.show(io::IO, rat::FourierRationalDerivativeOperator)
if get(io, :compact, false)
print(io, "Rational Fourier operator")
Expand Down
8 changes: 8 additions & 0 deletions test/fourier_operators_test.jl
Expand Up @@ -19,6 +19,8 @@ for T in (Float32, Float64)
println(devnull, D)
@test SummationByPartsOperators.derivative_order(D) == 1
@test issymmetric(D) == false
@test SummationByPartsOperators.xmin(D) xmin
@test SummationByPartsOperators.xmax(D) xmax
u = compute_coefficients(zero, D)
res = D*u
for k in 0:(N÷2)-1
Expand Down Expand Up @@ -58,6 +60,9 @@ for T in (Float32, Float64)
@test !issymmetric(I + D)
@test !issymmetric(D - I)

@test SummationByPartsOperators.xmin(D^2) xmin
@test SummationByPartsOperators.xmax(D^2) xmax

poly = (I + 2D + 5*D^2) * (2I * D - D^3 * 5I) * (D*2 - D^2 * 5)
@test poly.coef == (0.0, 0.0, 4.0, -2.0, -10.0, -45.0, 0.0, 125.0)
println(devnull, poly)
Expand All @@ -67,6 +72,9 @@ for T in (Float32, Float64)
v = (I - D^2) * u
@test inv(I - D^2) * v u

@test SummationByPartsOperators.xmin(inv(I - D^2)) xmin
@test SummationByPartsOperators.xmax(inv(I - D^2)) xmax

v = (I - D^2) \ u
@test D * v (D / (I - D^2)) * u

Expand Down
2 changes: 2 additions & 0 deletions test/legendre_operators_test.jl
Expand Up @@ -21,6 +21,8 @@ for T in (Float32, Float64)
println(devnull, D)
@test SummationByPartsOperators.derivative_order(D) == 1
@test issymmetric(D) == false
@test SummationByPartsOperators.xmin(D) xmin
@test SummationByPartsOperators.xmax(D) xmax
u = compute_coefficients(zero, D)
res = D*u
for k in 1:N-1
Expand Down

2 comments on commit 65aa3cd

@ranocha
Copy link
Owner Author

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/102667

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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.5.56 -m "<description of version>" 65aa3cda04ac5ed83f2e35e8d7d934d9d0d63b17
git push origin v0.5.56

Please sign in to comment.