Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

replaced all deadlinks with wayback links #1143

Merged
merged 3 commits into from
Feb 8, 2025
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/interpolations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ function reference_coordinates(::Lagrange{RefQuadrilateral, 3})
end

function reference_shape_value(ip::Lagrange{RefQuadrilateral, 3}, ξ::Vec{2}, i::Int)
# See https://defelement.com/elements/examples/quadrilateral-Q-3.html
# See https://web.archive.org/web/20220817132305/https://defelement.com/elements/examples/quadrilateral-Q-3.html
# Transform domain from [-1, 1] × [-1, 1] to [0, 1] × [0, 1]
ξ_x = (ξ[1] + 1) / 2
ξ_y = (ξ[2] + 1) / 2
Expand Down Expand Up @@ -1070,7 +1070,7 @@ end
#############################
# Lagrange RefPrism order 1 #
#############################
# Build on https://defelement.com/elements/examples/prism-Lagrange-1.html
# Build on https://web.archive.org/web/20220817123819/https://defelement.com/elements/examples/prism-Lagrange-1.html
getnbasefunctions(::Lagrange{RefPrism, 1}) = 6

facedof_indices(::Lagrange{RefPrism, 1}) = ((1, 3, 2), (1, 2, 5, 4), (3, 1, 4, 6), (2, 3, 6, 5), (4, 5, 6))
Expand Down Expand Up @@ -1101,7 +1101,7 @@ end
#############################
# Lagrange RefPrism order 2 #
#############################
# Build on https://defelement.com/elements/examples/prism-Lagrange-2.html .
# Build on https://web.archive.org/web/20220817125403/https://defelement.com/elements/examples/prism-Lagrange-2.html
# This is simply the tensor-product of a quadratic triangle with a quadratic line.
getnbasefunctions(::Lagrange{RefPrism, 2}) = 18

Expand Down Expand Up @@ -1323,7 +1323,7 @@ end
#######################################
# Lagrange-Bubble RefTriangle order 1 #
#######################################
# Taken from https://defelement.com/elements/bubble-enriched-lagrange.html
# Taken from https://web.archive.org/web/20240519081038/https://defelement.com/elements/bubble-enriched-lagrange.html
jfdev001 marked this conversation as resolved.
Show resolved Hide resolved
getnbasefunctions(::BubbleEnrichedLagrange{RefTriangle, 1}) = 4
adjust_dofs_during_distribution(::BubbleEnrichedLagrange{RefTriangle, 1}) = false

Expand Down